From 8409107a5bb04980ea196a5d7095d5c34f6b2e4e Mon Sep 17 00:00:00 2001 From: Ivan Molodetskikh Date: Mon, 30 Dec 2024 08:48:05 +0300 Subject: Implement default-window-height for scrolling windows --- src/window/unmapped.rs | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/window') diff --git a/src/window/unmapped.rs b/src/window/unmapped.rs index 18073a98..cf8754b4 100644 --- a/src/window/unmapped.rs +++ b/src/window/unmapped.rs @@ -36,6 +36,11 @@ pub enum InitialConfigureState { /// `None` means that the window will pick its own width. width: Option, + /// Resolved scrolling default height for this window. + /// + /// `None` means that the window will pick its own height. + height: Option, + /// Resolved floating default width for this window. /// /// `None` means that the window will pick its own width. -- cgit