From d10af92aeaeb2cb9476813caf774b41bb13a1a73 Mon Sep 17 00:00:00 2001 From: Ivan Molodetskikh Date: Sat, 6 Jan 2024 08:28:12 +0400 Subject: Redraw on toggling debug tint --- src/input.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/input.rs b/src/input.rs index 330f38fc..4865e7e0 100644 --- a/src/input.rs +++ b/src/input.rs @@ -245,6 +245,7 @@ impl State { } Action::ToggleDebugTint => { self.backend.toggle_debug_tint(); + self.niri.queue_redraw_all(); } Action::Spawn(command) => { spawn(command); -- cgit