diff options
author | Carlos Garnacho <carlosg@gnome.org> | 2010-12-13 00:55:19 +0100 |
---|---|---|
committer | Carlos Garnacho <carlosg@gnome.org> | 2010-12-15 03:17:58 +0100 |
commit | c4a5c2ed4b8861f92104f51d9213b0c9f64e26b1 (patch) | |
tree | b37ad7191d24a9587bb0cb8207acedbf2c76d945 /gdk/gdkglobals.c | |
parent | 66800aa212b3b086996d5a22f4eca151b679f309 (diff) | |
download | gtk+-c4a5c2ed4b8861f92104f51d9213b0c9f64e26b1.tar.gz |
Enable XI2 by default
gdk_enable_multidevice() has been replaced with gdk_disable_multidevice(),
so applications may call that function if they want to go back at the
previous behavior.
There would be usually little reasons to call that function, unless the
application is doing X calls itself that count on old fashioned core
devices.
Diffstat (limited to 'gdk/gdkglobals.c')
-rw-r--r-- | gdk/gdkglobals.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdk/gdkglobals.c b/gdk/gdkglobals.c index 5413886694..2a572981dc 100644 --- a/gdk/gdkglobals.c +++ b/gdk/gdkglobals.c @@ -38,6 +38,6 @@ gchar *_gdk_display_name = NULL; gint _gdk_screen_number = -1; gchar *_gdk_display_arg_name = NULL; gboolean _gdk_native_windows = FALSE; -gboolean _gdk_enable_multidevice = FALSE; +gboolean _gdk_disable_multidevice = FALSE; GSList *_gdk_displays = NULL; |