summaryrefslogtreecommitdiff
path: root/Services/WindowServer/WindowManager.cpp
diff options
context:
space:
mode:
authorBrendan Coles <bcoles@gmail.com>2020-11-02 06:28:14 +0000
committerAndreas Kling <kling@serenityos.org>2020-11-02 20:58:07 +0100
commitfb5ea8a21207189cca3de8af3e9886dfde983179 (patch)
tree6bab5f07f882a25f34add2db5d6e47f551418227 /Services/WindowServer/WindowManager.cpp
parent328915a27988c223b1eedd722396470377a00845 (diff)
downloadserenity-fb5ea8a21207189cca3de8af3e9886dfde983179.zip
WindowServer+LibGfx: Add Gfx::StandardCursor::Hidden cursor
Diffstat (limited to 'Services/WindowServer/WindowManager.cpp')
-rw-r--r--Services/WindowServer/WindowManager.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/Services/WindowServer/WindowManager.cpp b/Services/WindowServer/WindowManager.cpp
index 668a0b1580..35543d5c76 100644
--- a/Services/WindowServer/WindowManager.cpp
+++ b/Services/WindowServer/WindowManager.cpp
@@ -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 });