diff options
author | Colin Harrison <colin.harrison@virgin.net> | 2009-01-15 21:42:26 +0000 |
---|---|---|
committer | Jon TURNEY <jon.turney@dronecode.org.uk> | 2009-01-15 21:49:52 +0000 |
commit | 6f065a26db62aaf1d7aab9f9a3d0e6cd09d1c1dd (patch) | |
tree | 17a1c74c646e948a1d121c90640cbb2403e34e8f | |
parent | c745db1674c3cb55249c9eb6e74939b74c42409c (diff) |
Xming: Reduce MOUSE_POLLING_INTERVAL
Reduce MOUSE_POLLING_INTERVAL from 500ms to 50ms
In -multiwindow mode, this determines how quickly X windows can track the mouse
when it is outside any X window... Move the cursor around an xeyes, and you will
see what this timing effects.
-rw-r--r-- | hw/xwin/win.h | 1 | ||||
-rw-r--r-- | hw/xwin/winmultiwindowwindow.c | 7 | ||||
-rw-r--r-- | hw/xwin/winmultiwindowwndproc.c | 1 | ||||
-rwxr-xr-x | hw/xwin/winwin32rootlesswndproc.c | 1 |
4 files changed, 1 insertions, 9 deletions
diff --git a/hw/xwin/win.h b/hw/xwin/win.h index 33b74695d..999c7194e 100644 --- a/hw/xwin/win.h +++ b/hw/xwin/win.h @@ -102,6 +102,7 @@ #define WIN_E3B_TIMER_ID 1 #define WIN_POLLING_MOUSE_TIMER_ID 2 +#define MOUSE_POLLING_INTERVAL 50 #define WIN_E3B_OFF -1 #define WIN_FD_INVALID -1 diff --git a/hw/xwin/winmultiwindowwindow.c b/hw/xwin/winmultiwindowwindow.c index 6cad6314b..313bd7ded 100644 --- a/hw/xwin/winmultiwindowwindow.c +++ b/hw/xwin/winmultiwindowwindow.c @@ -63,13 +63,6 @@ static void winFindWindow (pointer value, XID id, pointer cdata); /* - * Constant defines - */ - -#define MOUSE_POLLING_INTERVAL 500 - - -/* * Macros */ diff --git a/hw/xwin/winmultiwindowwndproc.c b/hw/xwin/winmultiwindowwndproc.c index 8eadf45f5..1ea6959d2 100644 --- a/hw/xwin/winmultiwindowwndproc.c +++ b/hw/xwin/winmultiwindowwndproc.c @@ -61,7 +61,6 @@ static UINT_PTR g_uipMousePollingTimerID = 0; * Constant defines */ -#define MOUSE_POLLING_INTERVAL 500 #define WIN_MULTIWINDOW_SHAPE YES diff --git a/hw/xwin/winwin32rootlesswndproc.c b/hw/xwin/winwin32rootlesswndproc.c index 32a6b697f..e624ded36 100755 --- a/hw/xwin/winwin32rootlesswndproc.c +++ b/hw/xwin/winwin32rootlesswndproc.c @@ -48,7 +48,6 @@ * Constant defines */ -#define MOUSE_POLLING_INTERVAL 500 #define MOUSE_ACTIVATE_DEFAULT TRUE #define RAISE_ON_CLICK_DEFAULT FALSE |