From c1060cd26b1eb00e1bd1f8fda367ffd7b332fc0c Mon Sep 17 00:00:00 2001 From: Ivan Molodetskikh Date: Wed, 8 Nov 2023 11:17:06 +0400 Subject: Add set-window-height 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 71197d82..bcd86c35 100644 --- a/src/input.rs +++ b/src/input.rs @@ -325,6 +325,9 @@ impl State { Action::SetColumnWidth(change) => { self.niri.layout.set_column_width(change); } + Action::SetWindowHeight(change) => { + self.niri.layout.set_window_height(change); + } } } InputEvent::PointerMotion { event, .. } => { -- cgit