On Win32, do not produce tablet motion or button events while a window is

2004-08-28  Robert Ögren  <gtk@roboros.com>

	On Win32, do not produce tablet motion or button events while a
	window is being moved or resized. (#151090, reported by Shaneyfelt)

	* gdk/win32/gdkprivate-win32.h
	* gdk/win32/gdkglobals-win32.c
	* gdk/win32/gdkevents-win32.c: Rename the variable resizing to
	_sizemove_in_progress and make it extern.

	* gdk/win32/gdkinput-win32.c (_gdk_input_other_event): Ignore
	motion and button events if _sizemove_in_progress is true.
This commit is contained in:
Robert Ögren
2004-08-31 19:13:24 +00:00
committed by Tor Lillqvist
parent 542a2d42c7
commit c0ba86bc81
8 changed files with 69 additions and 6 deletions

View File

@ -66,3 +66,5 @@ DWORD _windows_version;
gint _gdk_input_ignore_wintab = TRUE;
gint _gdk_max_colors = 0;
gboolean _sizemove_in_progress = FALSE;