WindowServer+LibGfx: Added Crosshair cursor

This commit is contained in:
Uma Sankar Yedida 2020-10-30 22:36:32 +05:30 committed by Andreas Kling
commit 9ccae7a908
Notes: sideshowbarker 2024-07-19 01:38:14 +09:00
7 changed files with 11 additions and 0 deletions

View file

@ -56,6 +56,8 @@ RefPtr<Cursor> Cursor::create(Gfx::StandardCursor standard_cursor)
return nullptr;
case Gfx::StandardCursor::Arrow:
return WindowManager::the().arrow_cursor();
case Gfx::StandardCursor::Crosshair:
return WindowManager::the().crosshair_cursor();
case Gfx::StandardCursor::IBeam:
return WindowManager::the().i_beam_cursor();
case Gfx::StandardCursor::ResizeHorizontal: