summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMonsta <[email protected]>2015-08-31 17:38:30 +0300
committerMonsta <[email protected]>2015-08-31 17:38:30 +0300
commitf5784fc4e5a3cfbf9443f9310738f3d1eeecd5ff (patch)
tree921ad80a1138d6ef68e0bdf359ebcd5b830ae41e
parentb53fb913abe7da1e8d56bd50151f673c90cf121d (diff)
downloadmarco-f5784fc4e5a3cfbf9443f9310738f3d1eeecd5ff.tar.bz2
marco-f5784fc4e5a3cfbf9443f9310738f3d1eeecd5ff.tar.xz
check for GTK+ release, not pre-release
-rw-r--r--src/ui/ui.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/ui.c b/src/ui/ui.c
index bbef9395..6de4de1c 100644
--- a/src/ui/ui.c
+++ b/src/ui/ui.c
@@ -58,7 +58,7 @@ void meta_ui_init(int* argc, char*** argv)
* GDK will no longer generate the core XEvents we process.
* So at least for now, enforce the previous behavior.
*/
-#if GTK_CHECK_VERSION(2, 91, 7)
+#if GTK_CHECK_VERSION(3, 0, 0)
gdk_disable_multidevice ();
#endif