diff options
author | mtomasz@chromium.org <mtomasz@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-01-10 02:49:02 +0000 |
---|---|---|
committer | mtomasz@chromium.org <mtomasz@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-01-10 02:49:02 +0000 |
commit | 9556e008bae8c70420cc849e9b7ee18c61cd562d (patch) | |
tree | b9d2d622b60e9c223027bf5791967b7b9b684cc1 /ash/drag_drop | |
parent | 8f9c19f1c806c2a7019e3bb01848c93213e63598 (diff) | |
download | chromium_src-9556e008bae8c70420cc849e9b7ee18c61cd562d.zip chromium_src-9556e008bae8c70420cc849e9b7ee18c61cd562d.tar.gz chromium_src-9556e008bae8c70420cc849e9b7ee18c61cd562d.tar.bz2 |
Updated icons for drag and drop.
This patch updates these icons and changes icon for move dragging type from MOVE to GRABBING.
BUG=137982
Review URL: https://chromiumcodereview.appspot.com/11823017
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@176000 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ash/drag_drop')
-rw-r--r-- | ash/drag_drop/drag_drop_controller.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ash/drag_drop/drag_drop_controller.cc b/ash/drag_drop/drag_drop_controller.cc index 9477f98..fbab70f 100644 --- a/ash/drag_drop/drag_drop_controller.cc +++ b/ash/drag_drop/drag_drop_controller.cc @@ -225,7 +225,7 @@ void DragDropController::DragUpdate(aura::Window* target, else if (op & ui::DragDropTypes::DRAG_LINK) cursor = ui::kCursorAlias; else if (op & ui::DragDropTypes::DRAG_MOVE) - cursor = ui::kCursorMove; + cursor = ui::kCursorGrabbing; ash::Shell::GetInstance()->cursor_manager()->SetCursor(cursor); } } |