1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 03:57:43 +00:00

WindowServer+LibGUI: Add "resize row/column" cursors

This commit is contained in:
Linus Groh 2020-07-07 19:19:56 +01:00 committed by Andreas Kling
parent 2dd40aac4d
commit 62866208ee
8 changed files with 16 additions and 0 deletions

View file

@ -117,6 +117,8 @@ void WindowManager::reload_config(bool set_screen)
m_resize_vertically_cursor = get_cursor("ResizeV");
m_resize_diagonally_tlbr_cursor = get_cursor("ResizeDTLBR");
m_resize_diagonally_bltr_cursor = get_cursor("ResizeDBLTR");
m_resize_column_cursor = get_cursor("ResizeColumn");
m_resize_row_cursor = get_cursor("ResizeRow");
m_i_beam_cursor = get_cursor("IBeam");
m_disallowed_cursor = get_cursor("Disallowed");
m_move_cursor = get_cursor("Move");