summaryrefslogtreecommitdiffstats
path: root/chrome/views/focus_manager.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/views/focus_manager.cc')
-rw-r--r--chrome/views/focus_manager.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/chrome/views/focus_manager.cc b/chrome/views/focus_manager.cc
index 8b47faf..bd1b429 100644
--- a/chrome/views/focus_manager.cc
+++ b/chrome/views/focus_manager.cc
@@ -47,7 +47,8 @@ static bool CanRedirectMouseWheelFrom(HWND window) {
// pointer. Detect if we are dealing with this window. In this case we
// don't need to do anything as the Thinkpad mouse driver will send
// mouse wheel messages to the right window.
- if (class_name == L"Syn Visual Class")
+ if ((class_name == L"Syn Visual Class") ||
+ (class_name == L"SynTrackCursorWindowClass"))
return false;
return true;