File tree 3 files changed +6
-4
lines changed
3 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ You'll need the following dependencies:
11
11
* libcanberra-dev
12
12
* libclutter-1.0-dev (>= 1.12.0)
13
13
* libgee-0.8-dev
14
- * libglib2.0-dev (>= 2.44 )
14
+ * libglib2.0-dev (>= 2.74 )
15
15
* libgnome-desktop-3-dev
16
16
* libgranite-dev (>= 5.4.0)
17
17
* libgtk-3-dev (>= 3.10.0)
Original file line number Diff line number Diff line change @@ -69,15 +69,15 @@ add_project_arguments([
69
69
' -DGETTEXT_PACKAGE="@0@"' .format(meson .project_name()),
70
70
' -DGNOME_DESKTOP_USE_UNSTABLE_API' ,
71
71
72
- ' -DGLIB_VERSION_MIN_REQUIRED=GLIB_VERSION_2_44 ' ,
73
- ' -DGLIB_VERSION_MAX_ALLOWED=GLIB_VERSION_2_44 ' ,
72
+ ' -DGLIB_VERSION_MIN_REQUIRED=GLIB_VERSION_2_74 ' ,
73
+ ' -DGLIB_VERSION_MAX_ALLOWED=GLIB_VERSION_2_74 ' ,
74
74
],
75
75
language : ' c' ,
76
76
)
77
77
78
78
79
79
# Dependencies
80
- glib_version_required = ' 2.44 .0'
80
+ glib_version_required = ' 2.74 .0'
81
81
gtk_version_required = ' 3.10.0'
82
82
83
83
canberra_dep = dependency (' libcanberra' )
Original file line number Diff line number Diff line change @@ -125,10 +125,12 @@ namespace Gala {
125
125
// Listen for keypresses or mouse movement
126
126
key_press_event. connect ((event) = > {
127
127
on_user_became_active ();
128
+ return Clutter . EVENT_STOP ;
128
129
});
129
130
130
131
motion_event. connect ((event) = > {
131
132
on_user_became_active ();
133
+ return Clutter . EVENT_STOP ;
132
134
});
133
135
134
136
background_color = Clutter . Color . from_string (" black" );
You can’t perform that action at this time.
0 commit comments