summaryrefslogtreecommitdiff
path: root/Userland/Services
diff options
context:
space:
mode:
authorLinus Groh <mail@linusgroh.de>2021-05-12 22:51:56 +0100
committerLinus Groh <mail@linusgroh.de>2021-05-12 22:51:56 +0100
commit9a27ef6523746aaef0877b8860998660f3ddec42 (patch)
tree8c83740263370379c31319da9623b22466dc6ab7 /Userland/Services
parent60eb4adac2e3ceef09baef5b441990f5390503ac (diff)
downloadserenity-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.cpp2
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 {