Index: mash/wm/frame/move_event_handler.cc |
diff --git a/mash/wm/frame/move_event_handler.cc b/mash/wm/frame/move_event_handler.cc |
index 95b5873ee3553f0fae696934fd11b0c66684918f..aedbfb2d6929b3a83b350c3d40e7dc2c3d34238f 100644 |
--- a/mash/wm/frame/move_event_handler.cc |
+++ b/mash/wm/frame/move_event_handler.cc |
@@ -70,7 +70,8 @@ void MoveEventHandler::Detach() { |
void MoveEventHandler::OnMouseEvent(ui::MouseEvent* event) { |
toplevel_window_event_handler_.OnMouseEvent(event, wm_window_); |
if (!toplevel_window_event_handler_.is_drag_in_progress() && |
- event->type() == ui::ET_POINTER_MOVED) { |
+ (event->type() == ui::ET_POINTER_MOVED || |
+ event->type() == ui::ET_MOUSE_MOVED)) { |
const int hit_test_location = |
wm_window_->GetNonClientComponent(event->location()); |
window_manager_client_->SetNonClientCursor( |