Merge pull request #94411 from Riteo/suspending-the-right-way

Wayland: Check for suspended flag when unsuspending
This commit is contained in:
Rémi Verschelde 2024-07-17 12:52:50 +02:00
commit 64a11d08cc
No known key found for this signature in database
GPG Key ID: C3336907360768E1
1 changed files with 1 additions and 1 deletions

View File

@ -1238,7 +1238,7 @@ void DisplayServerWayland::process_events() {
} else {
try_suspend();
}
} else if (wayland_thread.get_reset_frame()) {
} else if (!wayland_thread.is_suspended() || wayland_thread.get_reset_frame()) {
// At last, a sign of life! We're no longer suspended.
suspended = false;
}