diff options
author | Monsta <[email protected]> | 2015-08-31 17:38:30 +0300 |
---|---|---|
committer | Monsta <[email protected]> | 2015-08-31 17:38:30 +0300 |
commit | f5784fc4e5a3cfbf9443f9310738f3d1eeecd5ff (patch) | |
tree | 921ad80a1138d6ef68e0bdf359ebcd5b830ae41e /src/ui/ui.c | |
parent | b53fb913abe7da1e8d56bd50151f673c90cf121d (diff) | |
download | marco-f5784fc4e5a3cfbf9443f9310738f3d1eeecd5ff.tar.bz2 marco-f5784fc4e5a3cfbf9443f9310738f3d1eeecd5ff.tar.xz |
check for GTK+ release, not pre-release
Diffstat (limited to 'src/ui/ui.c')
-rw-r--r-- | src/ui/ui.c | 2 |
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 |