diff --git a/ash/wm/ash_native_cursor_manager.cc b/ash/wm/ash_native_cursor_manager.cc index ae7bcd4e60350..7f48cad7b760d 100644 --- a/ash/wm/ash_native_cursor_manager.cc +++ b/ash/wm/ash_native_cursor_manager.cc @@ -103,7 +103,9 @@ void AshNativeCursorManager::SetCursor( gfx::NativeCursor invisible_cursor(ui::kCursorNone); image_cursors_->SetPlatformCursor(&invisible_cursor); if (cursor == ui::kCursorCustom) { - cursor = invisible_cursor; + // Fall back to the default pointer cursor for now. (crbug.com/476078) + // TODO(oshima): support custom cursor. + cursor = ui::kCursorPointer; } else { cursor.SetPlatformCursor(invisible_cursor.platform()); }