diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/input/mod.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/input/mod.rs b/src/input/mod.rs index 0c6cf8f3..5f31d7ee 100644 --- a/src/input/mod.rs +++ b/src/input/mod.rs @@ -1982,7 +1982,7 @@ impl State { self.niri.queue_redraw_all(); } } - Action::ToggleUrgent(id) => { + Action::ToggleWindowUrgent(id) => { let window = self .niri .layout @@ -1994,7 +1994,7 @@ impl State { } self.niri.queue_redraw_all(); } - Action::SetUrgent(id) => { + Action::SetWindowUrgent(id) => { let window = self .niri .layout @@ -2005,7 +2005,7 @@ impl State { } self.niri.queue_redraw_all(); } - Action::UnsetUrgent(id) => { + Action::UnsetWindowUrgent(id) => { let window = self .niri .layout |
