Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

render-manager: Don't paint when session is not active #2484

Merged
merged 1 commit into from
Oct 5, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions src/output/render-manager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -957,6 +957,13 @@ class wf::render_manager::impl

on_frame.set_callback([&] (void*)
{
/* If the session is not active, don't paint.
* This is the case when e.g. switching to another tty */
if (!wf::get_core().session->active)
{
return;
}

delay_manager->start_frame();

auto repaint_delay = delay_manager->get_delay();
Expand Down
Loading