diff options
author | Martin Wimpress <[email protected]> | 2015-08-31 17:45:01 +0100 |
---|---|---|
committer | Martin Wimpress <[email protected]> | 2015-08-31 17:45:01 +0100 |
commit | 384998d3b199bcdad410eb382f417ba0db6e301b (patch) | |
tree | 921ad80a1138d6ef68e0bdf359ebcd5b830ae41e | |
parent | b53fb913abe7da1e8d56bd50151f673c90cf121d (diff) | |
parent | f5784fc4e5a3cfbf9443f9310738f3d1eeecd5ff (diff) | |
download | marco-384998d3b199bcdad410eb382f417ba0db6e301b.tar.bz2 marco-384998d3b199bcdad410eb382f417ba0db6e301b.tar.xz |
Merge pull request #217 from monsta/check
check for GTK+ release, not pre-release
-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 |