From 7558ac14e6473c98bc4eea442b28a5ae330115ef Mon Sep 17 00:00:00 2001 From: Ivan Molodetskikh Date: Tue, 3 Oct 2023 11:38:42 +0400 Subject: Add set-column-width action --- src/input.rs | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/input.rs') diff --git a/src/input.rs b/src/input.rs index b52d5c77..d40221b8 100644 --- a/src/input.rs +++ b/src/input.rs @@ -296,6 +296,9 @@ impl State { self.move_cursor_to_output(&output); } } + Action::SetColumnWidth(change) => { + self.niri.monitor_set.set_column_width(change); + } } } } -- cgit