1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 18:27:35 +00:00

Base+WindowServer+LibGfx: Add new DragCopy Cursor

The purpose of this cursor is to indicate if a current dragged object
(file, Spreadsheet cell) can be dropped onto a widget.
This commit is contained in:
Karol Kosek 2022-06-20 11:37:22 +02:00 committed by Sam Atkins
parent 06102ff9af
commit e5674d9666
10 changed files with 8 additions and 0 deletions

View file

@ -2278,6 +2278,7 @@ void WindowManager::apply_cursor_theme(String const& theme_name)
reload_cursor(m_disallowed_cursor, "Disallowed");
reload_cursor(m_move_cursor, "Move");
reload_cursor(m_drag_cursor, "Drag");
reload_cursor(m_drag_copy_cursor, "DragCopy");
reload_cursor(m_wait_cursor, "Wait");
reload_cursor(m_crosshair_cursor, "Crosshair");
reload_cursor(m_eyedropper_cursor, "Eyedropper");