diff options
author | Linus Groh <mail@linusgroh.de> | 2021-05-12 22:51:56 +0100 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2021-05-12 22:51:56 +0100 |
commit | 9a27ef6523746aaef0877b8860998660f3ddec42 (patch) | |
tree | 8c83740263370379c31319da9623b22466dc6ab7 /Userland/Services | |
parent | 60eb4adac2e3ceef09baef5b441990f5390503ac (diff) | |
download | serenity-9a27ef6523746aaef0877b8860998660f3ddec42.zip |
WindowServer: Re-render window frame when setting unresponsive status
Otherwise "(not responding)" would not appear in the window title until
the window is moved/resized.
Diffstat (limited to 'Userland/Services')
-rw-r--r-- | Userland/Services/WindowServer/ClientConnection.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Services/WindowServer/ClientConnection.cpp b/Userland/Services/WindowServer/ClientConnection.cpp index f6c38c4a92..7d82779a98 100644 --- a/Userland/Services/WindowServer/ClientConnection.cpp +++ b/Userland/Services/WindowServer/ClientConnection.cpp @@ -839,7 +839,7 @@ void ClientConnection::set_unresponsive(bool unresponsive) m_unresponsive = unresponsive; for (auto& it : m_windows) { auto& window = *it.value; - window.invalidate(); + window.invalidate(true, true); if (unresponsive) { window.set_cursor_override(WindowManager::the().wait_cursor()); } else { |