mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 23:17:45 +00:00
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.
This commit is contained in:
parent
60eb4adac2
commit
9a27ef6523
1 changed files with 1 additions and 1 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue