1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 13:38:11 +00:00

WindowServer: Add a dedicated drag cursor

This commit is contained in:
Andreas Kling 2019-12-08 20:28:48 +01:00
parent 8423be2593
commit 39c2d04a9b
6 changed files with 10 additions and 0 deletions

View file

@ -185,6 +185,7 @@ void WSWindowManager::reload_config(bool set_screen)
m_i_beam_cursor = get_cursor("IBeam");
m_disallowed_cursor = get_cursor("Disallowed");
m_move_cursor = get_cursor("Move");
m_drag_cursor = get_cursor("Drag");
m_background_color = m_wm_config->read_color_entry("Colors", "Background", Color::Red);
@ -1103,6 +1104,9 @@ void WSWindowManager::notify_client_changed_app_menubar(WSClientConnection& clie
const WSCursor& WSWindowManager::active_cursor() const
{
if (m_dnd_client)
return *m_drag_cursor;
if (m_drag_window)
return *m_move_cursor;