mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-09 17:49:40 +00:00
WindowServer+LibGUI: Add "resize row/column" cursors
This commit is contained in:
parent
2dd40aac4d
commit
62866208ee
Notes:
sideshowbarker
2024-07-19 05:01:28 +09:00
Author: https://github.com/linusg
Commit: 62866208ee
Pull-request: https://github.com/SerenityOS/serenity/pull/2739
8 changed files with 16 additions and 0 deletions
|
@ -66,6 +66,10 @@ RefPtr<Cursor> Cursor::create(StandardCursor standard_cursor)
|
|||
return WindowManager::the().resize_diagonally_tlbr_cursor();
|
||||
case StandardCursor::ResizeDiagonalBLTR:
|
||||
return WindowManager::the().resize_diagonally_bltr_cursor();
|
||||
case StandardCursor::ResizeColumn:
|
||||
return WindowManager::the().resize_column_cursor();
|
||||
case StandardCursor::ResizeRow:
|
||||
return WindowManager::the().resize_row_cursor();
|
||||
case StandardCursor::Hand:
|
||||
return WindowManager::the().hand_cursor();
|
||||
case StandardCursor::Drag:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue