aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/input/mod.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/input/mod.rs b/src/input/mod.rs
index e50d5d75..9c4060c7 100644
--- a/src/input/mod.rs
+++ b/src/input/mod.rs
@@ -1986,6 +1986,7 @@ impl State {
let urgent = window.is_urgent();
window.set_urgent(!urgent);
}
+ self.niri.queue_redraw_all();
}
Action::SetUrgent(id) => {
let window = self
@@ -1996,6 +1997,7 @@ impl State {
if let Some(window) = window {
window.set_urgent(true);
}
+ self.niri.queue_redraw_all();
}
Action::UnsetUrgent(id) => {
let window = self
@@ -2006,6 +2008,7 @@ impl State {
if let Some(window) = window {
window.set_urgent(false);
}
+ self.niri.queue_redraw_all();
}
}
}