1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 16:37:35 +00:00

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
parent ddad7575a9
commit 9ccae7a908
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: