diff options
Diffstat (limited to 'Userland/Services/WindowServer/Compositor.h')
-rw-r--r-- | Userland/Services/WindowServer/Compositor.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Services/WindowServer/Compositor.h b/Userland/Services/WindowServer/Compositor.h index d779f5d15f..e23268910a 100644 --- a/Userland/Services/WindowServer/Compositor.h +++ b/Userland/Services/WindowServer/Compositor.h @@ -111,7 +111,7 @@ public: void invalidate_cursor(bool = false); Gfx::IntRect current_cursor_rect() const; Cursor const* current_cursor() const { return m_current_cursor; } - void current_cursor_was_reloaded(Cursor const* new_cursor) { m_current_cursor = new_cursor; } + void current_cursor_was_reloaded(Cursor const* new_cursor) { change_cursor(new_cursor); } void increment_display_link_count(Badge<ConnectionFromClient>); void decrement_display_link_count(Badge<ConnectionFromClient>); |