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
Notes: sideshowbarker 2024-07-19 05:01:20 +09:00
7 changed files with 8 additions and 0 deletions

View file

@ -72,6 +72,8 @@ RefPtr<Cursor> Cursor::create(StandardCursor standard_cursor)
return WindowManager::the().resize_row_cursor();
case StandardCursor::Hand:
return WindowManager::the().hand_cursor();
case StandardCursor::Help:
return WindowManager::the().help_cursor();
case StandardCursor::Drag:
return WindowManager::the().drag_cursor();
case StandardCursor::Move: