| Index: ui/views/corewm/compound_event_filter.cc
|
| ===================================================================
|
| --- ui/views/corewm/compound_event_filter.cc (revision 177177)
|
| +++ ui/views/corewm/compound_event_filter.cc (working copy)
|
| @@ -175,11 +175,11 @@
|
| if (client) {
|
| if (show && cursor_hidden_by_filter_) {
|
| cursor_hidden_by_filter_ = false;
|
| - client->ShowCursor(true);
|
| + client->EnableMouseEvents();
|
| } else if (client->IsCursorVisible() && !show &&
|
| !cursor_hidden_by_filter_) {
|
| cursor_hidden_by_filter_ = true;
|
| - client->ShowCursor(false);
|
| + client->DisableMouseEvents();
|
| }
|
| }
|
| }
|
|
|