From 421b1eee49a39ae0902ac10aa51d94b4b68a5bca Mon Sep 17 00:00:00 2001 From: Karol Kosek Date: Sat, 11 Feb 2023 14:31:51 +0100 Subject: [PATCH] WindowServer: Restore cursor animation This regressed in 6edc0cf5ab2fce211318b5d4f83e319897b621e5. --- Userland/Services/WindowServer/Compositor.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Userland/Services/WindowServer/Compositor.cpp b/Userland/Services/WindowServer/Compositor.cpp index 96ac96fe16..52b9f8398e 100644 --- a/Userland/Services/WindowServer/Compositor.cpp +++ b/Userland/Services/WindowServer/Compositor.cpp @@ -933,6 +933,7 @@ void Compositor::change_cursor(Cursor const* cursor) m_current_cursor_frame = 0; invalidate_cursor(true); }); + m_cursor_timer->start(); } }