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

WindowServer+LibGfx: Add Gfx::StandardCursor::Hidden cursor

This commit is contained in:
Brendan Coles 2020-11-02 06:28:14 +00:00 committed by Andreas Kling
parent 328915a279
commit fb5ea8a212
6 changed files with 7 additions and 0 deletions

View file

@ -112,6 +112,7 @@ void WindowManager::reload_config(bool set_screen)
set_resolution(m_config->read_num_entry("Screen", "Width", 1920), m_config->read_num_entry("Screen", "Height", 1080));
}
m_hidden_cursor = get_cursor("Hidden");
m_arrow_cursor = get_cursor("Arrow", { 2, 2 });
m_hand_cursor = get_cursor("Hand", { 8, 4 });
m_help_cursor = get_cursor("Help", { 1, 1 });