1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-22 11:35:06 +00:00

WindowServer+LibGUI: Add "help" cursor

This commit is contained in:
Linus Groh 2020-07-07 20:01:29 +01:00 committed by Andreas Kling
parent b86a59ec05
commit b8a8e417f1
7 changed files with 8 additions and 0 deletions

View file

@ -113,6 +113,7 @@ void WindowManager::reload_config(bool set_screen)
m_arrow_cursor = get_cursor("Arrow", { 2, 2 });
m_hand_cursor = get_cursor("Hand", { 8, 4 });
m_help_cursor = get_cursor("Help", { 1, 1 });
m_resize_horizontally_cursor = get_cursor("ResizeH");
m_resize_vertically_cursor = get_cursor("ResizeV");
m_resize_diagonally_tlbr_cursor = get_cursor("ResizeDTLBR");