diff --git a/niri-visual-tests/src/cases/layout.rs b/niri-visual-tests/src/cases/layout.rs index 3fcdb6c5..e0b4bb9a 100644 --- a/niri-visual-tests/src/cases/layout.rs +++ b/niri-visual-tests/src/cases/layout.rs @@ -172,6 +172,7 @@ impl Layout { window.clone(), AddWindowTarget::Auto, width, + None, false, false, ActivateWindow::default(), @@ -199,6 +200,7 @@ impl Layout { window.clone(), AddWindowTarget::NextTo(right_of.id()), width, + None, false, false, ActivateWindow::default(), diff --git a/src/handlers/compositor.rs b/src/handlers/compositor.rs index ff927531..dec86929 100644 --- a/src/handlers/compositor.rs +++ b/src/handlers/compositor.rs @@ -97,10 +97,11 @@ impl CompositorHandler for State { let toplevel = window.toplevel().expect("no X11 support"); - let (rules, width, is_full_width, output, workspace_id) = + let (rules, width, height, is_full_width, output, workspace_id) = if let InitialConfigureState::Configured { rules, width, + height, floating_width: _, floating_height: _, is_full_width, @@ -118,10 +119,10 @@ impl CompositorHandler for State { .and_then(|n| self.niri.layout.find_workspace_by_name(n)) .map(|(_, ws)| ws.id()); - (rules, width, is_full_width, output, workspace_id) + (rules, width, height, is_full_width, output, workspace_id) } else { error!("window map must happen after initial configure"); - (ResolvedWindowRules::empty(), None, false, None, None) + (ResolvedWindowRules::empty(), None, None, false, None, None) }; // The GTK about dialog sets min/max size after the initial configure but @@ -189,6 +190,7 @@ impl CompositorHandler for State { mapped, target, width, + height, is_full_width, is_floating, activate, diff --git a/src/handlers/xdg_shell.rs b/src/handlers/xdg_shell.rs index 62eafb1b..e6167b0a 100644 --- a/src/handlers/xdg_shell.rs +++ b/src/handlers/xdg_shell.rs @@ -505,6 +505,7 @@ impl XdgShellHandler for State { InitialConfigureState::Configured { rules, width, + height, floating_width, floating_height, is_full_width, @@ -569,7 +570,11 @@ impl XdgShellHandler for State { } else { *width }; - let configure_height = if is_floating { *floating_height } else { None }; + let configure_height = if is_floating { + *floating_height + } else { + *height + }; ws.configure_new_window( &unmapped.window, configure_width, @@ -854,6 +859,7 @@ impl State { let mut width = None; let mut floating_width = None; + let mut height = None; let mut floating_height = None; let is_full_width = rules.open_maximized.unwrap_or(false); let is_floating = rules.compute_open_floating(toplevel); @@ -880,6 +886,7 @@ impl State { width = ws.resolve_default_width(rules.default_width, false); floating_width = ws.resolve_default_width(rules.default_width, true); + height = ws.resolve_default_height(rules.default_height, false); floating_height = ws.resolve_default_height(rules.default_height, true); let configure_width = if is_floating { @@ -889,7 +896,7 @@ impl State { } else { width }; - let configure_height = if is_floating { floating_height } else { None }; + let configure_height = if is_floating { floating_height } else { height }; ws.configure_new_window( window, configure_width, @@ -914,6 +921,7 @@ impl State { *state = InitialConfigureState::Configured { rules, width, + height, floating_width, floating_height, is_full_width, diff --git a/src/layout/mod.rs b/src/layout/mod.rs index 2e05392d..97d3d1e1 100644 --- a/src/layout/mod.rs +++ b/src/layout/mod.rs @@ -839,16 +839,23 @@ impl Layout { /// Adds a new window to the layout. /// /// Returns an output that the window was added to, if there were any outputs. + #[allow(clippy::too_many_arguments)] pub fn add_window( &mut self, window: W, target: AddWindowTarget, width: Option, + height: Option, is_full_width: bool, is_floating: bool, activate: ActivateWindow, ) -> Option<&Output> { let resolved_width = self.resolve_default_width(&window, width, is_floating); + let resolved_height = height.map(|h| match h { + PresetSize::Proportion(prop) => SizeChange::SetProportion(prop * 100.), + PresetSize::Fixed(fixed) => SizeChange::SetFixed(fixed), + }); + let id = window.id().clone(); match &mut self.monitor_set { MonitorSet::Normal { @@ -927,6 +934,18 @@ impl Layout { *active_monitor_idx = mon_idx; } + // Set the default height for scrolling windows. + if !is_floating { + if let Some(change) = resolved_height { + let ws = mon + .workspaces + .iter_mut() + .find(|ws| ws.has_window(&id)) + .unwrap(); + ws.set_window_height(Some(&id), change); + } + } + Some(&mon.output) } MonitorSet::NoOutputs { workspaces } => { @@ -983,6 +1002,13 @@ impl Layout { is_floating, ); + // Set the default height for scrolling windows. + if !is_floating { + if let Some(change) = resolved_height { + ws.set_window_height(Some(&id), change); + } + } + None } } @@ -4693,6 +4719,7 @@ mod tests { win, AddWindowTarget::Auto, None, + None, false, params.is_floating, ActivateWindow::default(), @@ -4760,6 +4787,7 @@ mod tests { win, AddWindowTarget::NextTo(&next_to_id), None, + None, false, params.is_floating, ActivateWindow::default(), @@ -4832,6 +4860,7 @@ mod tests { win, AddWindowTarget::Workspace(ws_id), None, + None, false, params.is_floating, ActivateWindow::default(), diff --git a/src/layout/scrolling.rs b/src/layout/scrolling.rs index 6fa6fbfc..10101cca 100644 --- a/src/layout/scrolling.rs +++ b/src/layout/scrolling.rs @@ -399,6 +399,7 @@ impl ScrollingSpace { pub fn new_window_size( &self, width: Option, + height: Option, rules: &ResolvedWindowRules, ) -> Size { let border = rules.border.resolve_against(self.options.border); @@ -417,11 +418,27 @@ impl ScrollingSpace { 0 }; - let mut height = self.working_area.size.h - self.options.gaps * 2.; + let mut full_height = self.working_area.size.h - self.options.gaps * 2.; if !border.off { - height -= border.width.0 * 2.; + full_height -= border.width.0 * 2.; } + let height = if let Some(height) = height { + let height = match resolve_preset_size(height, &self.options, self.working_area.size.h) + { + ResolvedSize::Tile(mut size) => { + if !border.off { + size -= border.width.0 * 2.; + } + size + } + ResolvedSize::Window(size) => size, + }; + f64::min(height, full_height) + } else { + full_height + }; + Size::from((width, max(height.floor() as i32, 1))) } diff --git a/src/layout/workspace.rs b/src/layout/workspace.rs index 0e67f3b3..c77fb44f 100644 --- a/src/layout/workspace.rs +++ b/src/layout/workspace.rs @@ -740,7 +740,7 @@ impl Workspace { let mut size = if is_floating { self.floating.new_window_size(width, height, rules) } else { - self.scrolling.new_window_size(width, rules) + self.scrolling.new_window_size(width, height, rules) }; // If the window has a fixed size, or we're picking some fixed size, apply min and max diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dhF500-b-wfsAN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dhF500-b-wfsAN.snap index 0a8c7010..20a7266e 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dhF500-b-wfsAN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dhF500-b-wfsAN.snap @@ -5,11 +5,11 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 608 × 680, bounds: 1240 × 680, states: [] +size: 608 × 500, bounds: 1240 × 680, states: [] post-map configures: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen] size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 608 × 680, bounds: 1240 × 680, states: [Activated] +size: 608 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dhF500-b-wfsAU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dhF500-b-wfsAU.snap index f11476a4..3a935187 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dhF500-b-wfsAU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dhF500-b-wfsAU.snap @@ -5,8 +5,8 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 608 × 680, bounds: 1240 × 680, states: [] +size: 608 × 500, bounds: 1240 × 680, states: [] post-map configures: -size: 608 × 680, bounds: 1240 × 680, states: [] -size: 608 × 680, bounds: 1240 × 680, states: [Activated] +size: 608 × 500, bounds: 1240 × 680, states: [] +size: 608 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dhF500-b-wfsBN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dhF500-b-wfsBN.snap index fe0b226b..0911b50c 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dhF500-b-wfsBN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dhF500-b-wfsBN.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 608 × 680, bounds: 1240 × 680, states: [Activated] +size: 608 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dhF500-b-wfsBU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dhF500-b-wfsBU.snap index 2c9a690b..61e360b1 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dhF500-b-wfsBU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dhF500-b-wfsBU.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 608 × 680, bounds: 1240 × 680, states: [] +size: 608 × 500, bounds: 1240 × 680, states: [] post-map configures: -size: 608 × 680, bounds: 1240 × 680, states: [Activated] +size: 608 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dhF500-b.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dhF500-b.snap index 8407c039..96e2a309 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dhF500-b.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dhF500-b.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 608 × 680, bounds: 1240 × 680, states: [] +size: 608 × 500, bounds: 1240 × 680, states: [] post-map configures: -size: 608 × 680, bounds: 1240 × 680, states: [Activated] +size: 608 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dhF500-wfsAN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dhF500-wfsAN.snap index d123b357..487f814a 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dhF500-wfsAN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dhF500-wfsAN.snap @@ -5,11 +5,11 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 616 × 688, bounds: 1248 × 688, states: [] +size: 616 × 500, bounds: 1248 × 688, states: [] post-map configures: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen] size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 616 × 688, bounds: 1248 × 688, states: [Activated] +size: 616 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dhF500-wfsAU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dhF500-wfsAU.snap index fdce4fac..d551b1ad 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dhF500-wfsAU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dhF500-wfsAU.snap @@ -5,8 +5,8 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 616 × 688, bounds: 1248 × 688, states: [] +size: 616 × 500, bounds: 1248 × 688, states: [] post-map configures: -size: 616 × 688, bounds: 1248 × 688, states: [] -size: 616 × 688, bounds: 1248 × 688, states: [Activated] +size: 616 × 500, bounds: 1248 × 688, states: [] +size: 616 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dhF500-wfsBN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dhF500-wfsBN.snap index d8263aa9..c13bdde0 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dhF500-wfsBN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dhF500-wfsBN.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 616 × 688, bounds: 1248 × 688, states: [Activated] +size: 616 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dhF500-wfsBU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dhF500-wfsBU.snap index 7a8762e0..0a52d908 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dhF500-wfsBU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dhF500-wfsBU.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 616 × 688, bounds: 1248 × 688, states: [] +size: 616 × 500, bounds: 1248 × 688, states: [] post-map configures: -size: 616 × 688, bounds: 1248 × 688, states: [Activated] +size: 616 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dhF500.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dhF500.snap index 0efb2a82..43e0d50c 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dhF500.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dhF500.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 616 × 688, bounds: 1248 × 688, states: [] +size: 616 × 500, bounds: 1248 × 688, states: [] post-map configures: -size: 616 × 688, bounds: 1248 × 688, states: [Activated] +size: 616 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dhP0.5-b-wfsAN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dhP0.5-b-wfsAN.snap index 6bf3dd9f..86e3d2ac 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dhP0.5-b-wfsAN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dhP0.5-b-wfsAN.snap @@ -5,11 +5,11 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 608 × 680, bounds: 1240 × 680, states: [] +size: 608 × 328, bounds: 1240 × 680, states: [] post-map configures: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen] size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 608 × 680, bounds: 1240 × 680, states: [Activated] +size: 608 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dhP0.5-b-wfsAU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dhP0.5-b-wfsAU.snap index c3afa15b..3c2692dd 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dhP0.5-b-wfsAU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dhP0.5-b-wfsAU.snap @@ -5,8 +5,8 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 608 × 680, bounds: 1240 × 680, states: [] +size: 608 × 328, bounds: 1240 × 680, states: [] post-map configures: -size: 608 × 680, bounds: 1240 × 680, states: [] -size: 608 × 680, bounds: 1240 × 680, states: [Activated] +size: 608 × 328, bounds: 1240 × 680, states: [] +size: 608 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dhP0.5-b-wfsBN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dhP0.5-b-wfsBN.snap index a531d1f8..09e86293 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dhP0.5-b-wfsBN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dhP0.5-b-wfsBN.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 608 × 680, bounds: 1240 × 680, states: [Activated] +size: 608 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dhP0.5-b-wfsBU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dhP0.5-b-wfsBU.snap index 13ed4fe5..6684668f 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dhP0.5-b-wfsBU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dhP0.5-b-wfsBU.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 608 × 680, bounds: 1240 × 680, states: [] +size: 608 × 328, bounds: 1240 × 680, states: [] post-map configures: -size: 608 × 680, bounds: 1240 × 680, states: [Activated] +size: 608 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dhP0.5-b.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dhP0.5-b.snap index 06cc0a9a..adb22d11 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dhP0.5-b.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dhP0.5-b.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 608 × 680, bounds: 1240 × 680, states: [] +size: 608 × 328, bounds: 1240 × 680, states: [] post-map configures: -size: 608 × 680, bounds: 1240 × 680, states: [Activated] +size: 608 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dhP0.5-wfsAN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dhP0.5-wfsAN.snap index 334fae1b..606ae8bf 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dhP0.5-wfsAN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dhP0.5-wfsAN.snap @@ -5,11 +5,11 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 616 × 688, bounds: 1248 × 688, states: [] +size: 616 × 336, bounds: 1248 × 688, states: [] post-map configures: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen] size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 616 × 688, bounds: 1248 × 688, states: [Activated] +size: 616 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dhP0.5-wfsAU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dhP0.5-wfsAU.snap index 81ef8e3c..562ce034 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dhP0.5-wfsAU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dhP0.5-wfsAU.snap @@ -5,8 +5,8 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 616 × 688, bounds: 1248 × 688, states: [] +size: 616 × 336, bounds: 1248 × 688, states: [] post-map configures: -size: 616 × 688, bounds: 1248 × 688, states: [] -size: 616 × 688, bounds: 1248 × 688, states: [Activated] +size: 616 × 336, bounds: 1248 × 688, states: [] +size: 616 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dhP0.5-wfsBN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dhP0.5-wfsBN.snap index 0c1a7b63..184a5ad1 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dhP0.5-wfsBN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dhP0.5-wfsBN.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 616 × 688, bounds: 1248 × 688, states: [Activated] +size: 616 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dhP0.5-wfsBU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dhP0.5-wfsBU.snap index f9e53a81..60abf689 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dhP0.5-wfsBU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dhP0.5-wfsBU.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 616 × 688, bounds: 1248 × 688, states: [] +size: 616 × 336, bounds: 1248 × 688, states: [] post-map configures: -size: 616 × 688, bounds: 1248 × 688, states: [Activated] +size: 616 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dhP0.5.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dhP0.5.snap index d2b7b748..22223dae 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dhP0.5.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dhP0.5.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 616 × 688, bounds: 1248 × 688, states: [] +size: 616 × 336, bounds: 1248 × 688, states: [] post-map configures: -size: 616 × 688, bounds: 1248 × 688, states: [Activated] +size: 616 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwF1000-dhF500-b-wfsAN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwF1000-dhF500-b-wfsAN.snap index 8e5af584..09db7ca8 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwF1000-dhF500-b-wfsAN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwF1000-dhF500-b-wfsAN.snap @@ -5,11 +5,11 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1000 × 680, bounds: 1240 × 680, states: [] +size: 1000 × 500, bounds: 1240 × 680, states: [] post-map configures: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen] size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 1000 × 680, bounds: 1240 × 680, states: [Activated] +size: 1000 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwF1000-dhF500-b-wfsAU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwF1000-dhF500-b-wfsAU.snap index 5b887e03..68144a05 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwF1000-dhF500-b-wfsAU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwF1000-dhF500-b-wfsAU.snap @@ -5,8 +5,8 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1000 × 680, bounds: 1240 × 680, states: [] +size: 1000 × 500, bounds: 1240 × 680, states: [] post-map configures: -size: 1000 × 680, bounds: 1240 × 680, states: [] -size: 1000 × 680, bounds: 1240 × 680, states: [Activated] +size: 1000 × 500, bounds: 1240 × 680, states: [] +size: 1000 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwF1000-dhF500-b-wfsBN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwF1000-dhF500-b-wfsBN.snap index 162846d1..d8799761 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwF1000-dhF500-b-wfsBN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwF1000-dhF500-b-wfsBN.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 1000 × 680, bounds: 1240 × 680, states: [Activated] +size: 1000 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwF1000-dhF500-b-wfsBU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwF1000-dhF500-b-wfsBU.snap index 7db9c101..39482da0 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwF1000-dhF500-b-wfsBU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwF1000-dhF500-b-wfsBU.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1000 × 680, bounds: 1240 × 680, states: [] +size: 1000 × 500, bounds: 1240 × 680, states: [] post-map configures: -size: 1000 × 680, bounds: 1240 × 680, states: [Activated] +size: 1000 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwF1000-dhF500-b.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwF1000-dhF500-b.snap index 808e57c8..abf3077b 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwF1000-dhF500-b.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwF1000-dhF500-b.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1000 × 680, bounds: 1240 × 680, states: [] +size: 1000 × 500, bounds: 1240 × 680, states: [] post-map configures: -size: 1000 × 680, bounds: 1240 × 680, states: [Activated] +size: 1000 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwF1000-dhF500-wfsAN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwF1000-dhF500-wfsAN.snap index 59ff268d..32ebbccb 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwF1000-dhF500-wfsAN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwF1000-dhF500-wfsAN.snap @@ -5,11 +5,11 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1000 × 688, bounds: 1248 × 688, states: [] +size: 1000 × 500, bounds: 1248 × 688, states: [] post-map configures: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen] size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 1000 × 688, bounds: 1248 × 688, states: [Activated] +size: 1000 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwF1000-dhF500-wfsAU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwF1000-dhF500-wfsAU.snap index 7709c5e3..7a038897 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwF1000-dhF500-wfsAU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwF1000-dhF500-wfsAU.snap @@ -5,8 +5,8 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1000 × 688, bounds: 1248 × 688, states: [] +size: 1000 × 500, bounds: 1248 × 688, states: [] post-map configures: -size: 1000 × 688, bounds: 1248 × 688, states: [] -size: 1000 × 688, bounds: 1248 × 688, states: [Activated] +size: 1000 × 500, bounds: 1248 × 688, states: [] +size: 1000 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwF1000-dhF500-wfsBN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwF1000-dhF500-wfsBN.snap index a811bc43..64c3b985 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwF1000-dhF500-wfsBN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwF1000-dhF500-wfsBN.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 1000 × 688, bounds: 1248 × 688, states: [Activated] +size: 1000 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwF1000-dhF500-wfsBU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwF1000-dhF500-wfsBU.snap index 01fcdff7..de322469 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwF1000-dhF500-wfsBU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwF1000-dhF500-wfsBU.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1000 × 688, bounds: 1248 × 688, states: [] +size: 1000 × 500, bounds: 1248 × 688, states: [] post-map configures: -size: 1000 × 688, bounds: 1248 × 688, states: [Activated] +size: 1000 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwF1000-dhF500.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwF1000-dhF500.snap index ac407f9e..ccd55655 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwF1000-dhF500.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwF1000-dhF500.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1000 × 688, bounds: 1248 × 688, states: [] +size: 1000 × 500, bounds: 1248 × 688, states: [] post-map configures: -size: 1000 × 688, bounds: 1248 × 688, states: [Activated] +size: 1000 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwF1000-dhP0.5-b-wfsAN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwF1000-dhP0.5-b-wfsAN.snap index 605f3a9c..7002ad72 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwF1000-dhP0.5-b-wfsAN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwF1000-dhP0.5-b-wfsAN.snap @@ -5,11 +5,11 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1000 × 680, bounds: 1240 × 680, states: [] +size: 1000 × 328, bounds: 1240 × 680, states: [] post-map configures: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen] size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 1000 × 680, bounds: 1240 × 680, states: [Activated] +size: 1000 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwF1000-dhP0.5-b-wfsAU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwF1000-dhP0.5-b-wfsAU.snap index c4bb69ae..acc9e267 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwF1000-dhP0.5-b-wfsAU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwF1000-dhP0.5-b-wfsAU.snap @@ -5,8 +5,8 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1000 × 680, bounds: 1240 × 680, states: [] +size: 1000 × 328, bounds: 1240 × 680, states: [] post-map configures: -size: 1000 × 680, bounds: 1240 × 680, states: [] -size: 1000 × 680, bounds: 1240 × 680, states: [Activated] +size: 1000 × 328, bounds: 1240 × 680, states: [] +size: 1000 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwF1000-dhP0.5-b-wfsBN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwF1000-dhP0.5-b-wfsBN.snap index 29c62ee1..3b348cac 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwF1000-dhP0.5-b-wfsBN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwF1000-dhP0.5-b-wfsBN.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 1000 × 680, bounds: 1240 × 680, states: [Activated] +size: 1000 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwF1000-dhP0.5-b-wfsBU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwF1000-dhP0.5-b-wfsBU.snap index 863e582b..957a3ba7 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwF1000-dhP0.5-b-wfsBU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwF1000-dhP0.5-b-wfsBU.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1000 × 680, bounds: 1240 × 680, states: [] +size: 1000 × 328, bounds: 1240 × 680, states: [] post-map configures: -size: 1000 × 680, bounds: 1240 × 680, states: [Activated] +size: 1000 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwF1000-dhP0.5-b.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwF1000-dhP0.5-b.snap index ad0637b0..1908e544 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwF1000-dhP0.5-b.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwF1000-dhP0.5-b.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1000 × 680, bounds: 1240 × 680, states: [] +size: 1000 × 328, bounds: 1240 × 680, states: [] post-map configures: -size: 1000 × 680, bounds: 1240 × 680, states: [Activated] +size: 1000 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwF1000-dhP0.5-wfsAN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwF1000-dhP0.5-wfsAN.snap index 8c5922ae..d143d1c5 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwF1000-dhP0.5-wfsAN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwF1000-dhP0.5-wfsAN.snap @@ -5,11 +5,11 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1000 × 688, bounds: 1248 × 688, states: [] +size: 1000 × 336, bounds: 1248 × 688, states: [] post-map configures: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen] size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 1000 × 688, bounds: 1248 × 688, states: [Activated] +size: 1000 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwF1000-dhP0.5-wfsAU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwF1000-dhP0.5-wfsAU.snap index a7006dbe..dd35813c 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwF1000-dhP0.5-wfsAU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwF1000-dhP0.5-wfsAU.snap @@ -5,8 +5,8 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1000 × 688, bounds: 1248 × 688, states: [] +size: 1000 × 336, bounds: 1248 × 688, states: [] post-map configures: -size: 1000 × 688, bounds: 1248 × 688, states: [] -size: 1000 × 688, bounds: 1248 × 688, states: [Activated] +size: 1000 × 336, bounds: 1248 × 688, states: [] +size: 1000 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwF1000-dhP0.5-wfsBN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwF1000-dhP0.5-wfsBN.snap index 8944f1e0..dd091b69 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwF1000-dhP0.5-wfsBN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwF1000-dhP0.5-wfsBN.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 1000 × 688, bounds: 1248 × 688, states: [Activated] +size: 1000 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwF1000-dhP0.5-wfsBU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwF1000-dhP0.5-wfsBU.snap index cb553d39..3729a6a3 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwF1000-dhP0.5-wfsBU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwF1000-dhP0.5-wfsBU.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1000 × 688, bounds: 1248 × 688, states: [] +size: 1000 × 336, bounds: 1248 × 688, states: [] post-map configures: -size: 1000 × 688, bounds: 1248 × 688, states: [Activated] +size: 1000 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwF1000-dhP0.5.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwF1000-dhP0.5.snap index a234540d..46b6ad40 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwF1000-dhP0.5.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwF1000-dhP0.5.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1000 × 688, bounds: 1248 × 688, states: [] +size: 1000 × 336, bounds: 1248 × 688, states: [] post-map configures: -size: 1000 × 688, bounds: 1248 × 688, states: [Activated] +size: 1000 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwP0.25-dhF500-b-wfsAN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwP0.25-dhF500-b-wfsAN.snap index 03e01816..86401e66 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwP0.25-dhF500-b-wfsAN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwP0.25-dhF500-b-wfsAN.snap @@ -5,11 +5,11 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 292 × 680, bounds: 1240 × 680, states: [] +size: 292 × 500, bounds: 1240 × 680, states: [] post-map configures: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen] size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 292 × 680, bounds: 1240 × 680, states: [Activated] +size: 292 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwP0.25-dhF500-b-wfsAU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwP0.25-dhF500-b-wfsAU.snap index baa4e8ae..a18fa869 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwP0.25-dhF500-b-wfsAU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwP0.25-dhF500-b-wfsAU.snap @@ -5,8 +5,8 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 292 × 680, bounds: 1240 × 680, states: [] +size: 292 × 500, bounds: 1240 × 680, states: [] post-map configures: -size: 292 × 680, bounds: 1240 × 680, states: [] -size: 292 × 680, bounds: 1240 × 680, states: [Activated] +size: 292 × 500, bounds: 1240 × 680, states: [] +size: 292 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwP0.25-dhF500-b-wfsBN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwP0.25-dhF500-b-wfsBN.snap index 43ee79f1..e365966f 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwP0.25-dhF500-b-wfsBN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwP0.25-dhF500-b-wfsBN.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 292 × 680, bounds: 1240 × 680, states: [Activated] +size: 292 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwP0.25-dhF500-b-wfsBU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwP0.25-dhF500-b-wfsBU.snap index 852dac2a..ab5b2527 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwP0.25-dhF500-b-wfsBU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwP0.25-dhF500-b-wfsBU.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 292 × 680, bounds: 1240 × 680, states: [] +size: 292 × 500, bounds: 1240 × 680, states: [] post-map configures: -size: 292 × 680, bounds: 1240 × 680, states: [Activated] +size: 292 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwP0.25-dhF500-b.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwP0.25-dhF500-b.snap index 6d8593c6..9681c1ce 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwP0.25-dhF500-b.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwP0.25-dhF500-b.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 292 × 680, bounds: 1240 × 680, states: [] +size: 292 × 500, bounds: 1240 × 680, states: [] post-map configures: -size: 292 × 680, bounds: 1240 × 680, states: [Activated] +size: 292 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwP0.25-dhF500-wfsAN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwP0.25-dhF500-wfsAN.snap index c6d00d45..92cb209a 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwP0.25-dhF500-wfsAN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwP0.25-dhF500-wfsAN.snap @@ -5,11 +5,11 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 300 × 688, bounds: 1248 × 688, states: [] +size: 300 × 500, bounds: 1248 × 688, states: [] post-map configures: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen] size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 300 × 688, bounds: 1248 × 688, states: [Activated] +size: 300 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwP0.25-dhF500-wfsAU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwP0.25-dhF500-wfsAU.snap index 86fc489b..f84e5b7e 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwP0.25-dhF500-wfsAU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwP0.25-dhF500-wfsAU.snap @@ -5,8 +5,8 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 300 × 688, bounds: 1248 × 688, states: [] +size: 300 × 500, bounds: 1248 × 688, states: [] post-map configures: -size: 300 × 688, bounds: 1248 × 688, states: [] -size: 300 × 688, bounds: 1248 × 688, states: [Activated] +size: 300 × 500, bounds: 1248 × 688, states: [] +size: 300 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwP0.25-dhF500-wfsBN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwP0.25-dhF500-wfsBN.snap index bf4bf991..5a57a01f 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwP0.25-dhF500-wfsBN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwP0.25-dhF500-wfsBN.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 300 × 688, bounds: 1248 × 688, states: [Activated] +size: 300 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwP0.25-dhF500-wfsBU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwP0.25-dhF500-wfsBU.snap index 3790ab05..ee2e4016 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwP0.25-dhF500-wfsBU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwP0.25-dhF500-wfsBU.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 300 × 688, bounds: 1248 × 688, states: [] +size: 300 × 500, bounds: 1248 × 688, states: [] post-map configures: -size: 300 × 688, bounds: 1248 × 688, states: [Activated] +size: 300 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwP0.25-dhF500.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwP0.25-dhF500.snap index d8439867..be254a75 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwP0.25-dhF500.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwP0.25-dhF500.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 300 × 688, bounds: 1248 × 688, states: [] +size: 300 × 500, bounds: 1248 × 688, states: [] post-map configures: -size: 300 × 688, bounds: 1248 × 688, states: [Activated] +size: 300 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwP0.25-dhP0.5-b-wfsAN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwP0.25-dhP0.5-b-wfsAN.snap index 3d12a55e..c91e0e10 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwP0.25-dhP0.5-b-wfsAN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwP0.25-dhP0.5-b-wfsAN.snap @@ -5,11 +5,11 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 292 × 680, bounds: 1240 × 680, states: [] +size: 292 × 328, bounds: 1240 × 680, states: [] post-map configures: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen] size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 292 × 680, bounds: 1240 × 680, states: [Activated] +size: 292 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwP0.25-dhP0.5-b-wfsAU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwP0.25-dhP0.5-b-wfsAU.snap index 5cad880e..bdcc3475 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwP0.25-dhP0.5-b-wfsAU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwP0.25-dhP0.5-b-wfsAU.snap @@ -5,8 +5,8 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 292 × 680, bounds: 1240 × 680, states: [] +size: 292 × 328, bounds: 1240 × 680, states: [] post-map configures: -size: 292 × 680, bounds: 1240 × 680, states: [] -size: 292 × 680, bounds: 1240 × 680, states: [Activated] +size: 292 × 328, bounds: 1240 × 680, states: [] +size: 292 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwP0.25-dhP0.5-b-wfsBN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwP0.25-dhP0.5-b-wfsBN.snap index 652cadc2..f9115f50 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwP0.25-dhP0.5-b-wfsBN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwP0.25-dhP0.5-b-wfsBN.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 292 × 680, bounds: 1240 × 680, states: [Activated] +size: 292 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwP0.25-dhP0.5-b-wfsBU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwP0.25-dhP0.5-b-wfsBU.snap index 9ff11b7c..a1493a01 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwP0.25-dhP0.5-b-wfsBU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwP0.25-dhP0.5-b-wfsBU.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 292 × 680, bounds: 1240 × 680, states: [] +size: 292 × 328, bounds: 1240 × 680, states: [] post-map configures: -size: 292 × 680, bounds: 1240 × 680, states: [Activated] +size: 292 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwP0.25-dhP0.5-b.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwP0.25-dhP0.5-b.snap index bf5bb335..6b102e09 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwP0.25-dhP0.5-b.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwP0.25-dhP0.5-b.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 292 × 680, bounds: 1240 × 680, states: [] +size: 292 × 328, bounds: 1240 × 680, states: [] post-map configures: -size: 292 × 680, bounds: 1240 × 680, states: [Activated] +size: 292 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwP0.25-dhP0.5-wfsAN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwP0.25-dhP0.5-wfsAN.snap index 669a6530..f52f6d37 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwP0.25-dhP0.5-wfsAN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwP0.25-dhP0.5-wfsAN.snap @@ -5,11 +5,11 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 300 × 688, bounds: 1248 × 688, states: [] +size: 300 × 336, bounds: 1248 × 688, states: [] post-map configures: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen] size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 300 × 688, bounds: 1248 × 688, states: [Activated] +size: 300 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwP0.25-dhP0.5-wfsAU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwP0.25-dhP0.5-wfsAU.snap index 248597f7..29c114ba 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwP0.25-dhP0.5-wfsAU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwP0.25-dhP0.5-wfsAU.snap @@ -5,8 +5,8 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 300 × 688, bounds: 1248 × 688, states: [] +size: 300 × 336, bounds: 1248 × 688, states: [] post-map configures: -size: 300 × 688, bounds: 1248 × 688, states: [] -size: 300 × 688, bounds: 1248 × 688, states: [Activated] +size: 300 × 336, bounds: 1248 × 688, states: [] +size: 300 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwP0.25-dhP0.5-wfsBN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwP0.25-dhP0.5-wfsBN.snap index 286d2ef9..6d6b4ee5 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwP0.25-dhP0.5-wfsBN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwP0.25-dhP0.5-wfsBN.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 300 × 688, bounds: 1248 × 688, states: [Activated] +size: 300 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwP0.25-dhP0.5-wfsBU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwP0.25-dhP0.5-wfsBU.snap index c5dbf84b..2f091616 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwP0.25-dhP0.5-wfsBU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwP0.25-dhP0.5-wfsBU.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 300 × 688, bounds: 1248 × 688, states: [] +size: 300 × 336, bounds: 1248 × 688, states: [] post-map configures: -size: 300 × 688, bounds: 1248 × 688, states: [Activated] +size: 300 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwP0.25-dhP0.5.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwP0.25-dhP0.5.snap index 5005d8d1..451d542e 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwP0.25-dhP0.5.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwP0.25-dhP0.5.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 300 × 688, bounds: 1248 × 688, states: [] +size: 300 × 336, bounds: 1248 × 688, states: [] post-map configures: -size: 300 × 688, bounds: 1248 × 688, states: [Activated] +size: 300 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwU-dhF500-b-wfsAN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwU-dhF500-b-wfsAN.snap index 1370f148..012fdc05 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwU-dhF500-b-wfsAN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwU-dhF500-b-wfsAN.snap @@ -5,11 +5,11 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 0 × 680, bounds: 1240 × 680, states: [] +size: 0 × 500, bounds: 1240 × 680, states: [] post-map configures: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen] size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 1 × 680, bounds: 1240 × 680, states: [Activated] +size: 1 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwU-dhF500-b-wfsAU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwU-dhF500-b-wfsAU.snap index 9dae2b9d..28985567 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwU-dhF500-b-wfsAU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwU-dhF500-b-wfsAU.snap @@ -5,8 +5,8 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 0 × 680, bounds: 1240 × 680, states: [] +size: 0 × 500, bounds: 1240 × 680, states: [] post-map configures: -size: 0 × 680, bounds: 1240 × 680, states: [] -size: 1 × 680, bounds: 1240 × 680, states: [Activated] +size: 0 × 500, bounds: 1240 × 680, states: [] +size: 1 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwU-dhF500-b-wfsBN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwU-dhF500-b-wfsBN.snap index 6916f5a1..4aaa6d41 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwU-dhF500-b-wfsBN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwU-dhF500-b-wfsBN.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 1 × 680, bounds: 1240 × 680, states: [Activated] +size: 1 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwU-dhF500-b-wfsBU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwU-dhF500-b-wfsBU.snap index a4ef46d0..b014a3c4 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwU-dhF500-b-wfsBU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwU-dhF500-b-wfsBU.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 0 × 680, bounds: 1240 × 680, states: [] +size: 0 × 500, bounds: 1240 × 680, states: [] post-map configures: -size: 1 × 680, bounds: 1240 × 680, states: [Activated] +size: 1 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwU-dhF500-b.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwU-dhF500-b.snap index d2323c2f..0c1aa86b 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwU-dhF500-b.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwU-dhF500-b.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 0 × 680, bounds: 1240 × 680, states: [] +size: 0 × 500, bounds: 1240 × 680, states: [] post-map configures: -size: 1 × 680, bounds: 1240 × 680, states: [Activated] +size: 1 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwU-dhF500-wfsAN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwU-dhF500-wfsAN.snap index ef395d4c..fbc88e8a 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwU-dhF500-wfsAN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwU-dhF500-wfsAN.snap @@ -5,11 +5,11 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 0 × 688, bounds: 1248 × 688, states: [] +size: 0 × 500, bounds: 1248 × 688, states: [] post-map configures: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen] size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 1 × 688, bounds: 1248 × 688, states: [Activated] +size: 1 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwU-dhF500-wfsAU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwU-dhF500-wfsAU.snap index 8104101e..437ffd37 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwU-dhF500-wfsAU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwU-dhF500-wfsAU.snap @@ -5,8 +5,8 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 0 × 688, bounds: 1248 × 688, states: [] +size: 0 × 500, bounds: 1248 × 688, states: [] post-map configures: -size: 0 × 688, bounds: 1248 × 688, states: [] -size: 1 × 688, bounds: 1248 × 688, states: [Activated] +size: 0 × 500, bounds: 1248 × 688, states: [] +size: 1 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwU-dhF500-wfsBN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwU-dhF500-wfsBN.snap index b966a998..6d6e54ab 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwU-dhF500-wfsBN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwU-dhF500-wfsBN.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 1 × 688, bounds: 1248 × 688, states: [Activated] +size: 1 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwU-dhF500-wfsBU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwU-dhF500-wfsBU.snap index bd3672c8..237dbce4 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwU-dhF500-wfsBU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwU-dhF500-wfsBU.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 0 × 688, bounds: 1248 × 688, states: [] +size: 0 × 500, bounds: 1248 × 688, states: [] post-map configures: -size: 1 × 688, bounds: 1248 × 688, states: [Activated] +size: 1 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwU-dhF500.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwU-dhF500.snap index d25762d8..489b4254 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwU-dhF500.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwU-dhF500.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 0 × 688, bounds: 1248 × 688, states: [] +size: 0 × 500, bounds: 1248 × 688, states: [] post-map configures: -size: 1 × 688, bounds: 1248 × 688, states: [Activated] +size: 1 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwU-dhP0.5-b-wfsAN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwU-dhP0.5-b-wfsAN.snap index f72d03e8..b500f454 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwU-dhP0.5-b-wfsAN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwU-dhP0.5-b-wfsAN.snap @@ -5,11 +5,11 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 0 × 680, bounds: 1240 × 680, states: [] +size: 0 × 328, bounds: 1240 × 680, states: [] post-map configures: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen] size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 1 × 680, bounds: 1240 × 680, states: [Activated] +size: 1 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwU-dhP0.5-b-wfsAU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwU-dhP0.5-b-wfsAU.snap index 8c801ad6..bde8d6f8 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwU-dhP0.5-b-wfsAU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwU-dhP0.5-b-wfsAU.snap @@ -5,8 +5,8 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 0 × 680, bounds: 1240 × 680, states: [] +size: 0 × 328, bounds: 1240 × 680, states: [] post-map configures: -size: 0 × 680, bounds: 1240 × 680, states: [] -size: 1 × 680, bounds: 1240 × 680, states: [Activated] +size: 0 × 328, bounds: 1240 × 680, states: [] +size: 1 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwU-dhP0.5-b-wfsBN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwU-dhP0.5-b-wfsBN.snap index 53176019..eabc1436 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwU-dhP0.5-b-wfsBN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwU-dhP0.5-b-wfsBN.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 1 × 680, bounds: 1240 × 680, states: [Activated] +size: 1 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwU-dhP0.5-b-wfsBU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwU-dhP0.5-b-wfsBU.snap index 65070359..60b31f49 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwU-dhP0.5-b-wfsBU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwU-dhP0.5-b-wfsBU.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 0 × 680, bounds: 1240 × 680, states: [] +size: 0 × 328, bounds: 1240 × 680, states: [] post-map configures: -size: 1 × 680, bounds: 1240 × 680, states: [Activated] +size: 1 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwU-dhP0.5-b.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwU-dhP0.5-b.snap index 0bf0b50b..2e03aa2a 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwU-dhP0.5-b.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwU-dhP0.5-b.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 0 × 680, bounds: 1240 × 680, states: [] +size: 0 × 328, bounds: 1240 × 680, states: [] post-map configures: -size: 1 × 680, bounds: 1240 × 680, states: [Activated] +size: 1 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwU-dhP0.5-wfsAN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwU-dhP0.5-wfsAN.snap index cc774d12..09f76f0a 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwU-dhP0.5-wfsAN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwU-dhP0.5-wfsAN.snap @@ -5,11 +5,11 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 0 × 688, bounds: 1248 × 688, states: [] +size: 0 × 336, bounds: 1248 × 688, states: [] post-map configures: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen] size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 1 × 688, bounds: 1248 × 688, states: [Activated] +size: 1 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwU-dhP0.5-wfsAU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwU-dhP0.5-wfsAU.snap index 1c6dc2b0..ccdf6dfa 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwU-dhP0.5-wfsAU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwU-dhP0.5-wfsAU.snap @@ -5,8 +5,8 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 0 × 688, bounds: 1248 × 688, states: [] +size: 0 × 336, bounds: 1248 × 688, states: [] post-map configures: -size: 0 × 688, bounds: 1248 × 688, states: [] -size: 1 × 688, bounds: 1248 × 688, states: [Activated] +size: 0 × 336, bounds: 1248 × 688, states: [] +size: 1 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwU-dhP0.5-wfsBN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwU-dhP0.5-wfsBN.snap index 1882b38f..cecfb475 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwU-dhP0.5-wfsBN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwU-dhP0.5-wfsBN.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 1 × 688, bounds: 1248 × 688, states: [Activated] +size: 1 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwU-dhP0.5-wfsBU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwU-dhP0.5-wfsBU.snap index 4dbcc493..a1fa5231 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwU-dhP0.5-wfsBU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwU-dhP0.5-wfsBU.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 0 × 688, bounds: 1248 × 688, states: [] +size: 0 × 336, bounds: 1248 × 688, states: [] post-map configures: -size: 1 × 688, bounds: 1248 × 688, states: [Activated] +size: 1 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwU-dhP0.5.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwU-dhP0.5.snap index 75df1af6..3c278a16 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwU-dhP0.5.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@dwU-dhP0.5.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 0 × 688, bounds: 1248 × 688, states: [] +size: 0 × 336, bounds: 1248 × 688, states: [] post-map configures: -size: 1 × 688, bounds: 1248 × 688, states: [Activated] +size: 1 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dhF500-b-wfsAN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dhF500-b-wfsAN.snap index 45f9a690..07c43a2f 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dhF500-b-wfsAN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dhF500-b-wfsAN.snap @@ -5,11 +5,11 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 608 × 680, bounds: 1240 × 680, states: [] +size: 608 × 500, bounds: 1240 × 680, states: [] post-map configures: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen] size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 608 × 680, bounds: 1240 × 680, states: [Activated] +size: 608 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dhF500-b-wfsAU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dhF500-b-wfsAU.snap index f885c30d..d7d1dfee 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dhF500-b-wfsAU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dhF500-b-wfsAU.snap @@ -5,8 +5,8 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 608 × 680, bounds: 1240 × 680, states: [] +size: 608 × 500, bounds: 1240 × 680, states: [] post-map configures: -size: 608 × 680, bounds: 1240 × 680, states: [] -size: 608 × 680, bounds: 1240 × 680, states: [Activated] +size: 608 × 500, bounds: 1240 × 680, states: [] +size: 608 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dhF500-b-wfsBN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dhF500-b-wfsBN.snap index b993edaa..c3f339a8 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dhF500-b-wfsBN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dhF500-b-wfsBN.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 608 × 680, bounds: 1240 × 680, states: [] +size: 608 × 500, bounds: 1240 × 680, states: [] post-map configures: -size: 608 × 680, bounds: 1240 × 680, states: [Activated] +size: 608 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dhF500-b-wfsBU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dhF500-b-wfsBU.snap index db4a29ac..803a7f84 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dhF500-b-wfsBU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dhF500-b-wfsBU.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 608 × 680, bounds: 1240 × 680, states: [] +size: 608 × 500, bounds: 1240 × 680, states: [] post-map configures: -size: 608 × 680, bounds: 1240 × 680, states: [Activated] +size: 608 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dhF500-b.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dhF500-b.snap index 44e39408..e9647b6e 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dhF500-b.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dhF500-b.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 608 × 680, bounds: 1240 × 680, states: [] +size: 608 × 500, bounds: 1240 × 680, states: [] post-map configures: -size: 608 × 680, bounds: 1240 × 680, states: [Activated] +size: 608 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dhF500-wfsAN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dhF500-wfsAN.snap index e2af5f5d..dd645196 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dhF500-wfsAN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dhF500-wfsAN.snap @@ -5,11 +5,11 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 616 × 688, bounds: 1248 × 688, states: [] +size: 616 × 500, bounds: 1248 × 688, states: [] post-map configures: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen] size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 616 × 688, bounds: 1248 × 688, states: [Activated] +size: 616 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dhF500-wfsAU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dhF500-wfsAU.snap index 42f38036..5cf05609 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dhF500-wfsAU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dhF500-wfsAU.snap @@ -5,8 +5,8 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 616 × 688, bounds: 1248 × 688, states: [] +size: 616 × 500, bounds: 1248 × 688, states: [] post-map configures: -size: 616 × 688, bounds: 1248 × 688, states: [] -size: 616 × 688, bounds: 1248 × 688, states: [Activated] +size: 616 × 500, bounds: 1248 × 688, states: [] +size: 616 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dhF500-wfsBN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dhF500-wfsBN.snap index 7c7abcfb..ffd8687e 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dhF500-wfsBN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dhF500-wfsBN.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 616 × 688, bounds: 1248 × 688, states: [] +size: 616 × 500, bounds: 1248 × 688, states: [] post-map configures: -size: 616 × 688, bounds: 1248 × 688, states: [Activated] +size: 616 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dhF500-wfsBU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dhF500-wfsBU.snap index 5d509df6..87cd2817 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dhF500-wfsBU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dhF500-wfsBU.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 616 × 688, bounds: 1248 × 688, states: [] +size: 616 × 500, bounds: 1248 × 688, states: [] post-map configures: -size: 616 × 688, bounds: 1248 × 688, states: [Activated] +size: 616 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dhF500.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dhF500.snap index f20abbd2..b9b8513e 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dhF500.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dhF500.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 616 × 688, bounds: 1248 × 688, states: [] +size: 616 × 500, bounds: 1248 × 688, states: [] post-map configures: -size: 616 × 688, bounds: 1248 × 688, states: [Activated] +size: 616 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dhP0.5-b-wfsAN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dhP0.5-b-wfsAN.snap index 54c17e4d..fead1ade 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dhP0.5-b-wfsAN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dhP0.5-b-wfsAN.snap @@ -5,11 +5,11 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 608 × 680, bounds: 1240 × 680, states: [] +size: 608 × 328, bounds: 1240 × 680, states: [] post-map configures: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen] size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 608 × 680, bounds: 1240 × 680, states: [Activated] +size: 608 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dhP0.5-b-wfsAU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dhP0.5-b-wfsAU.snap index a7b61683..99af5b4e 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dhP0.5-b-wfsAU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dhP0.5-b-wfsAU.snap @@ -5,8 +5,8 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 608 × 680, bounds: 1240 × 680, states: [] +size: 608 × 328, bounds: 1240 × 680, states: [] post-map configures: -size: 608 × 680, bounds: 1240 × 680, states: [] -size: 608 × 680, bounds: 1240 × 680, states: [Activated] +size: 608 × 328, bounds: 1240 × 680, states: [] +size: 608 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dhP0.5-b-wfsBN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dhP0.5-b-wfsBN.snap index 0266a542..c2094ae0 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dhP0.5-b-wfsBN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dhP0.5-b-wfsBN.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 608 × 680, bounds: 1240 × 680, states: [] +size: 608 × 328, bounds: 1240 × 680, states: [] post-map configures: -size: 608 × 680, bounds: 1240 × 680, states: [Activated] +size: 608 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dhP0.5-b-wfsBU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dhP0.5-b-wfsBU.snap index 1bb0fd82..4e0038aa 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dhP0.5-b-wfsBU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dhP0.5-b-wfsBU.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 608 × 680, bounds: 1240 × 680, states: [] +size: 608 × 328, bounds: 1240 × 680, states: [] post-map configures: -size: 608 × 680, bounds: 1240 × 680, states: [Activated] +size: 608 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dhP0.5-b.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dhP0.5-b.snap index 827032ec..e542b8e6 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dhP0.5-b.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dhP0.5-b.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 608 × 680, bounds: 1240 × 680, states: [] +size: 608 × 328, bounds: 1240 × 680, states: [] post-map configures: -size: 608 × 680, bounds: 1240 × 680, states: [Activated] +size: 608 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dhP0.5-wfsAN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dhP0.5-wfsAN.snap index aedfbc1f..cce0604d 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dhP0.5-wfsAN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dhP0.5-wfsAN.snap @@ -5,11 +5,11 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 616 × 688, bounds: 1248 × 688, states: [] +size: 616 × 336, bounds: 1248 × 688, states: [] post-map configures: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen] size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 616 × 688, bounds: 1248 × 688, states: [Activated] +size: 616 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dhP0.5-wfsAU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dhP0.5-wfsAU.snap index 5c4e34c0..398a8188 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dhP0.5-wfsAU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dhP0.5-wfsAU.snap @@ -5,8 +5,8 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 616 × 688, bounds: 1248 × 688, states: [] +size: 616 × 336, bounds: 1248 × 688, states: [] post-map configures: -size: 616 × 688, bounds: 1248 × 688, states: [] -size: 616 × 688, bounds: 1248 × 688, states: [Activated] +size: 616 × 336, bounds: 1248 × 688, states: [] +size: 616 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dhP0.5-wfsBN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dhP0.5-wfsBN.snap index a1ac2d4d..204fc607 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dhP0.5-wfsBN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dhP0.5-wfsBN.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 616 × 688, bounds: 1248 × 688, states: [] +size: 616 × 336, bounds: 1248 × 688, states: [] post-map configures: -size: 616 × 688, bounds: 1248 × 688, states: [Activated] +size: 616 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dhP0.5-wfsBU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dhP0.5-wfsBU.snap index e3902304..d130d755 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dhP0.5-wfsBU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dhP0.5-wfsBU.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 616 × 688, bounds: 1248 × 688, states: [] +size: 616 × 336, bounds: 1248 × 688, states: [] post-map configures: -size: 616 × 688, bounds: 1248 × 688, states: [Activated] +size: 616 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dhP0.5.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dhP0.5.snap index 94cf80bf..7f24fe5e 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dhP0.5.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dhP0.5.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 616 × 688, bounds: 1248 × 688, states: [] +size: 616 × 336, bounds: 1248 × 688, states: [] post-map configures: -size: 616 × 688, bounds: 1248 × 688, states: [Activated] +size: 616 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwF1000-dhF500-b-wfsAN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwF1000-dhF500-b-wfsAN.snap index 3cbfb352..01b7b4ef 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwF1000-dhF500-b-wfsAN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwF1000-dhF500-b-wfsAN.snap @@ -5,11 +5,11 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1000 × 680, bounds: 1240 × 680, states: [] +size: 1000 × 500, bounds: 1240 × 680, states: [] post-map configures: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen] size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 1000 × 680, bounds: 1240 × 680, states: [Activated] +size: 1000 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwF1000-dhF500-b-wfsAU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwF1000-dhF500-b-wfsAU.snap index b140b2a8..82b50f71 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwF1000-dhF500-b-wfsAU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwF1000-dhF500-b-wfsAU.snap @@ -5,8 +5,8 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1000 × 680, bounds: 1240 × 680, states: [] +size: 1000 × 500, bounds: 1240 × 680, states: [] post-map configures: -size: 1000 × 680, bounds: 1240 × 680, states: [] -size: 1000 × 680, bounds: 1240 × 680, states: [Activated] +size: 1000 × 500, bounds: 1240 × 680, states: [] +size: 1000 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwF1000-dhF500-b-wfsBN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwF1000-dhF500-b-wfsBN.snap index 2bdb811d..962bc4bf 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwF1000-dhF500-b-wfsBN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwF1000-dhF500-b-wfsBN.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1000 × 680, bounds: 1240 × 680, states: [] +size: 1000 × 500, bounds: 1240 × 680, states: [] post-map configures: -size: 1000 × 680, bounds: 1240 × 680, states: [Activated] +size: 1000 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwF1000-dhF500-b-wfsBU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwF1000-dhF500-b-wfsBU.snap index d31ed25f..dc67296a 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwF1000-dhF500-b-wfsBU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwF1000-dhF500-b-wfsBU.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1000 × 680, bounds: 1240 × 680, states: [] +size: 1000 × 500, bounds: 1240 × 680, states: [] post-map configures: -size: 1000 × 680, bounds: 1240 × 680, states: [Activated] +size: 1000 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwF1000-dhF500-b.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwF1000-dhF500-b.snap index 43a87668..d93ec5f5 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwF1000-dhF500-b.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwF1000-dhF500-b.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1000 × 680, bounds: 1240 × 680, states: [] +size: 1000 × 500, bounds: 1240 × 680, states: [] post-map configures: -size: 1000 × 680, bounds: 1240 × 680, states: [Activated] +size: 1000 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwF1000-dhF500-wfsAN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwF1000-dhF500-wfsAN.snap index f85ce5e7..c059cb06 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwF1000-dhF500-wfsAN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwF1000-dhF500-wfsAN.snap @@ -5,11 +5,11 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1000 × 688, bounds: 1248 × 688, states: [] +size: 1000 × 500, bounds: 1248 × 688, states: [] post-map configures: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen] size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 1000 × 688, bounds: 1248 × 688, states: [Activated] +size: 1000 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwF1000-dhF500-wfsAU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwF1000-dhF500-wfsAU.snap index d6d6847e..fa52bc47 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwF1000-dhF500-wfsAU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwF1000-dhF500-wfsAU.snap @@ -5,8 +5,8 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1000 × 688, bounds: 1248 × 688, states: [] +size: 1000 × 500, bounds: 1248 × 688, states: [] post-map configures: -size: 1000 × 688, bounds: 1248 × 688, states: [] -size: 1000 × 688, bounds: 1248 × 688, states: [Activated] +size: 1000 × 500, bounds: 1248 × 688, states: [] +size: 1000 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwF1000-dhF500-wfsBN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwF1000-dhF500-wfsBN.snap index 166ad425..caf1ee04 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwF1000-dhF500-wfsBN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwF1000-dhF500-wfsBN.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1000 × 688, bounds: 1248 × 688, states: [] +size: 1000 × 500, bounds: 1248 × 688, states: [] post-map configures: -size: 1000 × 688, bounds: 1248 × 688, states: [Activated] +size: 1000 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwF1000-dhF500-wfsBU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwF1000-dhF500-wfsBU.snap index 46769a58..1f48cd60 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwF1000-dhF500-wfsBU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwF1000-dhF500-wfsBU.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1000 × 688, bounds: 1248 × 688, states: [] +size: 1000 × 500, bounds: 1248 × 688, states: [] post-map configures: -size: 1000 × 688, bounds: 1248 × 688, states: [Activated] +size: 1000 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwF1000-dhF500.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwF1000-dhF500.snap index 79d15fb1..c5c97a2c 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwF1000-dhF500.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwF1000-dhF500.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1000 × 688, bounds: 1248 × 688, states: [] +size: 1000 × 500, bounds: 1248 × 688, states: [] post-map configures: -size: 1000 × 688, bounds: 1248 × 688, states: [Activated] +size: 1000 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwF1000-dhP0.5-b-wfsAN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwF1000-dhP0.5-b-wfsAN.snap index 4faab047..f8a78bdc 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwF1000-dhP0.5-b-wfsAN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwF1000-dhP0.5-b-wfsAN.snap @@ -5,11 +5,11 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1000 × 680, bounds: 1240 × 680, states: [] +size: 1000 × 328, bounds: 1240 × 680, states: [] post-map configures: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen] size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 1000 × 680, bounds: 1240 × 680, states: [Activated] +size: 1000 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwF1000-dhP0.5-b-wfsAU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwF1000-dhP0.5-b-wfsAU.snap index 74d2bbb4..d7453cf3 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwF1000-dhP0.5-b-wfsAU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwF1000-dhP0.5-b-wfsAU.snap @@ -5,8 +5,8 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1000 × 680, bounds: 1240 × 680, states: [] +size: 1000 × 328, bounds: 1240 × 680, states: [] post-map configures: -size: 1000 × 680, bounds: 1240 × 680, states: [] -size: 1000 × 680, bounds: 1240 × 680, states: [Activated] +size: 1000 × 328, bounds: 1240 × 680, states: [] +size: 1000 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwF1000-dhP0.5-b-wfsBN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwF1000-dhP0.5-b-wfsBN.snap index 597c219d..6386d3da 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwF1000-dhP0.5-b-wfsBN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwF1000-dhP0.5-b-wfsBN.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1000 × 680, bounds: 1240 × 680, states: [] +size: 1000 × 328, bounds: 1240 × 680, states: [] post-map configures: -size: 1000 × 680, bounds: 1240 × 680, states: [Activated] +size: 1000 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwF1000-dhP0.5-b-wfsBU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwF1000-dhP0.5-b-wfsBU.snap index 872e441f..be7eca1d 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwF1000-dhP0.5-b-wfsBU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwF1000-dhP0.5-b-wfsBU.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1000 × 680, bounds: 1240 × 680, states: [] +size: 1000 × 328, bounds: 1240 × 680, states: [] post-map configures: -size: 1000 × 680, bounds: 1240 × 680, states: [Activated] +size: 1000 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwF1000-dhP0.5-b.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwF1000-dhP0.5-b.snap index e9c64eac..cb0013b7 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwF1000-dhP0.5-b.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwF1000-dhP0.5-b.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1000 × 680, bounds: 1240 × 680, states: [] +size: 1000 × 328, bounds: 1240 × 680, states: [] post-map configures: -size: 1000 × 680, bounds: 1240 × 680, states: [Activated] +size: 1000 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwF1000-dhP0.5-wfsAN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwF1000-dhP0.5-wfsAN.snap index e29e4fba..609d76f8 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwF1000-dhP0.5-wfsAN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwF1000-dhP0.5-wfsAN.snap @@ -5,11 +5,11 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1000 × 688, bounds: 1248 × 688, states: [] +size: 1000 × 336, bounds: 1248 × 688, states: [] post-map configures: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen] size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 1000 × 688, bounds: 1248 × 688, states: [Activated] +size: 1000 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwF1000-dhP0.5-wfsAU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwF1000-dhP0.5-wfsAU.snap index e920091f..b914c808 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwF1000-dhP0.5-wfsAU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwF1000-dhP0.5-wfsAU.snap @@ -5,8 +5,8 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1000 × 688, bounds: 1248 × 688, states: [] +size: 1000 × 336, bounds: 1248 × 688, states: [] post-map configures: -size: 1000 × 688, bounds: 1248 × 688, states: [] -size: 1000 × 688, bounds: 1248 × 688, states: [Activated] +size: 1000 × 336, bounds: 1248 × 688, states: [] +size: 1000 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwF1000-dhP0.5-wfsBN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwF1000-dhP0.5-wfsBN.snap index e6464f36..214cad2f 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwF1000-dhP0.5-wfsBN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwF1000-dhP0.5-wfsBN.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1000 × 688, bounds: 1248 × 688, states: [] +size: 1000 × 336, bounds: 1248 × 688, states: [] post-map configures: -size: 1000 × 688, bounds: 1248 × 688, states: [Activated] +size: 1000 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwF1000-dhP0.5-wfsBU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwF1000-dhP0.5-wfsBU.snap index 77668189..83c6b349 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwF1000-dhP0.5-wfsBU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwF1000-dhP0.5-wfsBU.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1000 × 688, bounds: 1248 × 688, states: [] +size: 1000 × 336, bounds: 1248 × 688, states: [] post-map configures: -size: 1000 × 688, bounds: 1248 × 688, states: [Activated] +size: 1000 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwF1000-dhP0.5.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwF1000-dhP0.5.snap index a692b485..5fee9f0a 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwF1000-dhP0.5.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwF1000-dhP0.5.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1000 × 688, bounds: 1248 × 688, states: [] +size: 1000 × 336, bounds: 1248 × 688, states: [] post-map configures: -size: 1000 × 688, bounds: 1248 × 688, states: [Activated] +size: 1000 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwP0.25-dhF500-b-wfsAN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwP0.25-dhF500-b-wfsAN.snap index 70f69cac..7c6f0a0e 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwP0.25-dhF500-b-wfsAN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwP0.25-dhF500-b-wfsAN.snap @@ -5,11 +5,11 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 292 × 680, bounds: 1240 × 680, states: [] +size: 292 × 500, bounds: 1240 × 680, states: [] post-map configures: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen] size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 292 × 680, bounds: 1240 × 680, states: [Activated] +size: 292 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwP0.25-dhF500-b-wfsAU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwP0.25-dhF500-b-wfsAU.snap index 0649deba..f4684762 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwP0.25-dhF500-b-wfsAU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwP0.25-dhF500-b-wfsAU.snap @@ -5,8 +5,8 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 292 × 680, bounds: 1240 × 680, states: [] +size: 292 × 500, bounds: 1240 × 680, states: [] post-map configures: -size: 292 × 680, bounds: 1240 × 680, states: [] -size: 292 × 680, bounds: 1240 × 680, states: [Activated] +size: 292 × 500, bounds: 1240 × 680, states: [] +size: 292 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwP0.25-dhF500-b-wfsBN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwP0.25-dhF500-b-wfsBN.snap index 1bff46b8..5f41714a 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwP0.25-dhF500-b-wfsBN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwP0.25-dhF500-b-wfsBN.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 292 × 680, bounds: 1240 × 680, states: [] +size: 292 × 500, bounds: 1240 × 680, states: [] post-map configures: -size: 292 × 680, bounds: 1240 × 680, states: [Activated] +size: 292 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwP0.25-dhF500-b-wfsBU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwP0.25-dhF500-b-wfsBU.snap index e3062407..f9e01999 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwP0.25-dhF500-b-wfsBU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwP0.25-dhF500-b-wfsBU.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 292 × 680, bounds: 1240 × 680, states: [] +size: 292 × 500, bounds: 1240 × 680, states: [] post-map configures: -size: 292 × 680, bounds: 1240 × 680, states: [Activated] +size: 292 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwP0.25-dhF500-b.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwP0.25-dhF500-b.snap index aef73fd8..54c629a5 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwP0.25-dhF500-b.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwP0.25-dhF500-b.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 292 × 680, bounds: 1240 × 680, states: [] +size: 292 × 500, bounds: 1240 × 680, states: [] post-map configures: -size: 292 × 680, bounds: 1240 × 680, states: [Activated] +size: 292 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwP0.25-dhF500-wfsAN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwP0.25-dhF500-wfsAN.snap index da96bca9..53d12751 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwP0.25-dhF500-wfsAN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwP0.25-dhF500-wfsAN.snap @@ -5,11 +5,11 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 300 × 688, bounds: 1248 × 688, states: [] +size: 300 × 500, bounds: 1248 × 688, states: [] post-map configures: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen] size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 300 × 688, bounds: 1248 × 688, states: [Activated] +size: 300 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwP0.25-dhF500-wfsAU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwP0.25-dhF500-wfsAU.snap index ba162268..777ccdc0 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwP0.25-dhF500-wfsAU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwP0.25-dhF500-wfsAU.snap @@ -5,8 +5,8 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 300 × 688, bounds: 1248 × 688, states: [] +size: 300 × 500, bounds: 1248 × 688, states: [] post-map configures: -size: 300 × 688, bounds: 1248 × 688, states: [] -size: 300 × 688, bounds: 1248 × 688, states: [Activated] +size: 300 × 500, bounds: 1248 × 688, states: [] +size: 300 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwP0.25-dhF500-wfsBN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwP0.25-dhF500-wfsBN.snap index e1f893c8..bce22c38 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwP0.25-dhF500-wfsBN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwP0.25-dhF500-wfsBN.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 300 × 688, bounds: 1248 × 688, states: [] +size: 300 × 500, bounds: 1248 × 688, states: [] post-map configures: -size: 300 × 688, bounds: 1248 × 688, states: [Activated] +size: 300 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwP0.25-dhF500-wfsBU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwP0.25-dhF500-wfsBU.snap index 79994dd7..82329a3e 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwP0.25-dhF500-wfsBU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwP0.25-dhF500-wfsBU.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 300 × 688, bounds: 1248 × 688, states: [] +size: 300 × 500, bounds: 1248 × 688, states: [] post-map configures: -size: 300 × 688, bounds: 1248 × 688, states: [Activated] +size: 300 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwP0.25-dhF500.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwP0.25-dhF500.snap index 6d094450..3b02a28e 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwP0.25-dhF500.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwP0.25-dhF500.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 300 × 688, bounds: 1248 × 688, states: [] +size: 300 × 500, bounds: 1248 × 688, states: [] post-map configures: -size: 300 × 688, bounds: 1248 × 688, states: [Activated] +size: 300 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwP0.25-dhP0.5-b-wfsAN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwP0.25-dhP0.5-b-wfsAN.snap index ca760c32..602f7187 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwP0.25-dhP0.5-b-wfsAN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwP0.25-dhP0.5-b-wfsAN.snap @@ -5,11 +5,11 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 292 × 680, bounds: 1240 × 680, states: [] +size: 292 × 328, bounds: 1240 × 680, states: [] post-map configures: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen] size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 292 × 680, bounds: 1240 × 680, states: [Activated] +size: 292 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwP0.25-dhP0.5-b-wfsAU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwP0.25-dhP0.5-b-wfsAU.snap index 19421231..f714ef86 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwP0.25-dhP0.5-b-wfsAU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwP0.25-dhP0.5-b-wfsAU.snap @@ -5,8 +5,8 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 292 × 680, bounds: 1240 × 680, states: [] +size: 292 × 328, bounds: 1240 × 680, states: [] post-map configures: -size: 292 × 680, bounds: 1240 × 680, states: [] -size: 292 × 680, bounds: 1240 × 680, states: [Activated] +size: 292 × 328, bounds: 1240 × 680, states: [] +size: 292 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwP0.25-dhP0.5-b-wfsBN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwP0.25-dhP0.5-b-wfsBN.snap index bafc82a3..46ecb274 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwP0.25-dhP0.5-b-wfsBN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwP0.25-dhP0.5-b-wfsBN.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 292 × 680, bounds: 1240 × 680, states: [] +size: 292 × 328, bounds: 1240 × 680, states: [] post-map configures: -size: 292 × 680, bounds: 1240 × 680, states: [Activated] +size: 292 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwP0.25-dhP0.5-b-wfsBU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwP0.25-dhP0.5-b-wfsBU.snap index 7f17a1f6..ff2c5e62 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwP0.25-dhP0.5-b-wfsBU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwP0.25-dhP0.5-b-wfsBU.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 292 × 680, bounds: 1240 × 680, states: [] +size: 292 × 328, bounds: 1240 × 680, states: [] post-map configures: -size: 292 × 680, bounds: 1240 × 680, states: [Activated] +size: 292 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwP0.25-dhP0.5-b.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwP0.25-dhP0.5-b.snap index 090fe8d2..2cec46d0 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwP0.25-dhP0.5-b.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwP0.25-dhP0.5-b.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 292 × 680, bounds: 1240 × 680, states: [] +size: 292 × 328, bounds: 1240 × 680, states: [] post-map configures: -size: 292 × 680, bounds: 1240 × 680, states: [Activated] +size: 292 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwP0.25-dhP0.5-wfsAN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwP0.25-dhP0.5-wfsAN.snap index 0957ef57..d4821ded 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwP0.25-dhP0.5-wfsAN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwP0.25-dhP0.5-wfsAN.snap @@ -5,11 +5,11 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 300 × 688, bounds: 1248 × 688, states: [] +size: 300 × 336, bounds: 1248 × 688, states: [] post-map configures: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen] size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 300 × 688, bounds: 1248 × 688, states: [Activated] +size: 300 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwP0.25-dhP0.5-wfsAU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwP0.25-dhP0.5-wfsAU.snap index 6b7a6c8e..d6518b30 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwP0.25-dhP0.5-wfsAU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwP0.25-dhP0.5-wfsAU.snap @@ -5,8 +5,8 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 300 × 688, bounds: 1248 × 688, states: [] +size: 300 × 336, bounds: 1248 × 688, states: [] post-map configures: -size: 300 × 688, bounds: 1248 × 688, states: [] -size: 300 × 688, bounds: 1248 × 688, states: [Activated] +size: 300 × 336, bounds: 1248 × 688, states: [] +size: 300 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwP0.25-dhP0.5-wfsBN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwP0.25-dhP0.5-wfsBN.snap index 97e4430c..b3e9e4aa 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwP0.25-dhP0.5-wfsBN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwP0.25-dhP0.5-wfsBN.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 300 × 688, bounds: 1248 × 688, states: [] +size: 300 × 336, bounds: 1248 × 688, states: [] post-map configures: -size: 300 × 688, bounds: 1248 × 688, states: [Activated] +size: 300 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwP0.25-dhP0.5-wfsBU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwP0.25-dhP0.5-wfsBU.snap index fb7007b9..2f20ac51 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwP0.25-dhP0.5-wfsBU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwP0.25-dhP0.5-wfsBU.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 300 × 688, bounds: 1248 × 688, states: [] +size: 300 × 336, bounds: 1248 × 688, states: [] post-map configures: -size: 300 × 688, bounds: 1248 × 688, states: [Activated] +size: 300 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwP0.25-dhP0.5.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwP0.25-dhP0.5.snap index 3ddd8927..78c85aea 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwP0.25-dhP0.5.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwP0.25-dhP0.5.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 300 × 688, bounds: 1248 × 688, states: [] +size: 300 × 336, bounds: 1248 × 688, states: [] post-map configures: -size: 300 × 688, bounds: 1248 × 688, states: [Activated] +size: 300 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwU-dhF500-b-wfsAN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwU-dhF500-b-wfsAN.snap index c96d794b..2c11bc9c 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwU-dhF500-b-wfsAN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwU-dhF500-b-wfsAN.snap @@ -5,11 +5,11 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 0 × 680, bounds: 1240 × 680, states: [] +size: 0 × 500, bounds: 1240 × 680, states: [] post-map configures: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen] size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 1 × 680, bounds: 1240 × 680, states: [Activated] +size: 1 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwU-dhF500-b-wfsAU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwU-dhF500-b-wfsAU.snap index 7e775204..c037f47b 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwU-dhF500-b-wfsAU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwU-dhF500-b-wfsAU.snap @@ -5,8 +5,8 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 0 × 680, bounds: 1240 × 680, states: [] +size: 0 × 500, bounds: 1240 × 680, states: [] post-map configures: -size: 0 × 680, bounds: 1240 × 680, states: [] -size: 1 × 680, bounds: 1240 × 680, states: [Activated] +size: 0 × 500, bounds: 1240 × 680, states: [] +size: 1 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwU-dhF500-b-wfsBN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwU-dhF500-b-wfsBN.snap index 933b0bee..cd546c95 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwU-dhF500-b-wfsBN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwU-dhF500-b-wfsBN.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 0 × 680, bounds: 1240 × 680, states: [] +size: 0 × 500, bounds: 1240 × 680, states: [] post-map configures: -size: 1 × 680, bounds: 1240 × 680, states: [Activated] +size: 1 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwU-dhF500-b-wfsBU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwU-dhF500-b-wfsBU.snap index 1b69d264..1c0fda27 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwU-dhF500-b-wfsBU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwU-dhF500-b-wfsBU.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 0 × 680, bounds: 1240 × 680, states: [] +size: 0 × 500, bounds: 1240 × 680, states: [] post-map configures: -size: 1 × 680, bounds: 1240 × 680, states: [Activated] +size: 1 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwU-dhF500-b.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwU-dhF500-b.snap index 1be638fe..77516739 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwU-dhF500-b.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwU-dhF500-b.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 0 × 680, bounds: 1240 × 680, states: [] +size: 0 × 500, bounds: 1240 × 680, states: [] post-map configures: -size: 1 × 680, bounds: 1240 × 680, states: [Activated] +size: 1 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwU-dhF500-wfsAN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwU-dhF500-wfsAN.snap index 41ef3d94..591f989a 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwU-dhF500-wfsAN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwU-dhF500-wfsAN.snap @@ -5,11 +5,11 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 0 × 688, bounds: 1248 × 688, states: [] +size: 0 × 500, bounds: 1248 × 688, states: [] post-map configures: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen] size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 1 × 688, bounds: 1248 × 688, states: [Activated] +size: 1 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwU-dhF500-wfsAU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwU-dhF500-wfsAU.snap index 90608538..f7142746 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwU-dhF500-wfsAU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwU-dhF500-wfsAU.snap @@ -5,8 +5,8 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 0 × 688, bounds: 1248 × 688, states: [] +size: 0 × 500, bounds: 1248 × 688, states: [] post-map configures: -size: 0 × 688, bounds: 1248 × 688, states: [] -size: 1 × 688, bounds: 1248 × 688, states: [Activated] +size: 0 × 500, bounds: 1248 × 688, states: [] +size: 1 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwU-dhF500-wfsBN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwU-dhF500-wfsBN.snap index 67d15f59..41b66608 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwU-dhF500-wfsBN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwU-dhF500-wfsBN.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 0 × 688, bounds: 1248 × 688, states: [] +size: 0 × 500, bounds: 1248 × 688, states: [] post-map configures: -size: 1 × 688, bounds: 1248 × 688, states: [Activated] +size: 1 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwU-dhF500-wfsBU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwU-dhF500-wfsBU.snap index 7c01488a..d835ddc5 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwU-dhF500-wfsBU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwU-dhF500-wfsBU.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 0 × 688, bounds: 1248 × 688, states: [] +size: 0 × 500, bounds: 1248 × 688, states: [] post-map configures: -size: 1 × 688, bounds: 1248 × 688, states: [Activated] +size: 1 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwU-dhF500.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwU-dhF500.snap index a21d238b..7bfb3b54 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwU-dhF500.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwU-dhF500.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 0 × 688, bounds: 1248 × 688, states: [] +size: 0 × 500, bounds: 1248 × 688, states: [] post-map configures: -size: 1 × 688, bounds: 1248 × 688, states: [Activated] +size: 1 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwU-dhP0.5-b-wfsAN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwU-dhP0.5-b-wfsAN.snap index 7ad759f5..17e73813 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwU-dhP0.5-b-wfsAN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwU-dhP0.5-b-wfsAN.snap @@ -5,11 +5,11 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 0 × 680, bounds: 1240 × 680, states: [] +size: 0 × 328, bounds: 1240 × 680, states: [] post-map configures: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen] size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 1 × 680, bounds: 1240 × 680, states: [Activated] +size: 1 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwU-dhP0.5-b-wfsAU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwU-dhP0.5-b-wfsAU.snap index 8a7cebac..4a9c5963 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwU-dhP0.5-b-wfsAU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwU-dhP0.5-b-wfsAU.snap @@ -5,8 +5,8 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 0 × 680, bounds: 1240 × 680, states: [] +size: 0 × 328, bounds: 1240 × 680, states: [] post-map configures: -size: 0 × 680, bounds: 1240 × 680, states: [] -size: 1 × 680, bounds: 1240 × 680, states: [Activated] +size: 0 × 328, bounds: 1240 × 680, states: [] +size: 1 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwU-dhP0.5-b-wfsBN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwU-dhP0.5-b-wfsBN.snap index d475b955..b0410f2e 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwU-dhP0.5-b-wfsBN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwU-dhP0.5-b-wfsBN.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 0 × 680, bounds: 1240 × 680, states: [] +size: 0 × 328, bounds: 1240 × 680, states: [] post-map configures: -size: 1 × 680, bounds: 1240 × 680, states: [Activated] +size: 1 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwU-dhP0.5-b-wfsBU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwU-dhP0.5-b-wfsBU.snap index dc6e0387..3cb8fa67 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwU-dhP0.5-b-wfsBU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwU-dhP0.5-b-wfsBU.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 0 × 680, bounds: 1240 × 680, states: [] +size: 0 × 328, bounds: 1240 × 680, states: [] post-map configures: -size: 1 × 680, bounds: 1240 × 680, states: [Activated] +size: 1 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwU-dhP0.5-b.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwU-dhP0.5-b.snap index cfb8af5e..fabb7ad2 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwU-dhP0.5-b.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwU-dhP0.5-b.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 0 × 680, bounds: 1240 × 680, states: [] +size: 0 × 328, bounds: 1240 × 680, states: [] post-map configures: -size: 1 × 680, bounds: 1240 × 680, states: [Activated] +size: 1 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwU-dhP0.5-wfsAN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwU-dhP0.5-wfsAN.snap index 3a65ccff..c48bb1c3 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwU-dhP0.5-wfsAN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwU-dhP0.5-wfsAN.snap @@ -5,11 +5,11 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 0 × 688, bounds: 1248 × 688, states: [] +size: 0 × 336, bounds: 1248 × 688, states: [] post-map configures: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen] size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 1 × 688, bounds: 1248 × 688, states: [Activated] +size: 1 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwU-dhP0.5-wfsAU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwU-dhP0.5-wfsAU.snap index 51dafdf1..3ac187d9 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwU-dhP0.5-wfsAU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwU-dhP0.5-wfsAU.snap @@ -5,8 +5,8 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 0 × 688, bounds: 1248 × 688, states: [] +size: 0 × 336, bounds: 1248 × 688, states: [] post-map configures: -size: 0 × 688, bounds: 1248 × 688, states: [] -size: 1 × 688, bounds: 1248 × 688, states: [Activated] +size: 0 × 336, bounds: 1248 × 688, states: [] +size: 1 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwU-dhP0.5-wfsBN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwU-dhP0.5-wfsBN.snap index 48b29b52..c0641423 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwU-dhP0.5-wfsBN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwU-dhP0.5-wfsBN.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 0 × 688, bounds: 1248 × 688, states: [] +size: 0 × 336, bounds: 1248 × 688, states: [] post-map configures: -size: 1 × 688, bounds: 1248 × 688, states: [Activated] +size: 1 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwU-dhP0.5-wfsBU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwU-dhP0.5-wfsBU.snap index 3c1a24a4..0333734f 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwU-dhP0.5-wfsBU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwU-dhP0.5-wfsBU.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 0 × 688, bounds: 1248 × 688, states: [] +size: 0 × 336, bounds: 1248 × 688, states: [] post-map configures: -size: 1 × 688, bounds: 1248 × 688, states: [Activated] +size: 1 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwU-dhP0.5.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwU-dhP0.5.snap index c5293bf2..a5e2fe50 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwU-dhP0.5.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-dwU-dhP0.5.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 0 × 688, bounds: 1248 × 688, states: [] +size: 0 × 336, bounds: 1248 × 688, states: [] post-map configures: -size: 1 × 688, bounds: 1248 × 688, states: [Activated] +size: 1 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dhF500-b-wfsAN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dhF500-b-wfsAN.snap index 205205df..2cfc31c2 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dhF500-b-wfsAN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dhF500-b-wfsAN.snap @@ -5,11 +5,11 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1240 × 680, bounds: 1240 × 680, states: [] +size: 1240 × 500, bounds: 1240 × 680, states: [] post-map configures: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen] size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dhF500-b-wfsAU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dhF500-b-wfsAU.snap index c9a50677..ab02dc05 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dhF500-b-wfsAU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dhF500-b-wfsAU.snap @@ -5,8 +5,8 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1240 × 680, bounds: 1240 × 680, states: [] +size: 1240 × 500, bounds: 1240 × 680, states: [] post-map configures: -size: 1240 × 680, bounds: 1240 × 680, states: [] -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 500, bounds: 1240 × 680, states: [] +size: 1240 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dhF500-b-wfsBN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dhF500-b-wfsBN.snap index a39334d2..fc859a9b 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dhF500-b-wfsBN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dhF500-b-wfsBN.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1240 × 680, bounds: 1240 × 680, states: [] +size: 1240 × 500, bounds: 1240 × 680, states: [] post-map configures: -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dhF500-b-wfsBU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dhF500-b-wfsBU.snap index 60102002..26681128 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dhF500-b-wfsBU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dhF500-b-wfsBU.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1240 × 680, bounds: 1240 × 680, states: [] +size: 1240 × 500, bounds: 1240 × 680, states: [] post-map configures: -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dhF500-b.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dhF500-b.snap index 830265b1..a8da9fe9 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dhF500-b.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dhF500-b.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1240 × 680, bounds: 1240 × 680, states: [] +size: 1240 × 500, bounds: 1240 × 680, states: [] post-map configures: -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dhF500-wfsAN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dhF500-wfsAN.snap index 8c782208..7e4d3dbf 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dhF500-wfsAN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dhF500-wfsAN.snap @@ -5,11 +5,11 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1248 × 688, bounds: 1248 × 688, states: [] +size: 1248 × 500, bounds: 1248 × 688, states: [] post-map configures: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen] size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dhF500-wfsAU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dhF500-wfsAU.snap index 32c70d17..0281831a 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dhF500-wfsAU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dhF500-wfsAU.snap @@ -5,8 +5,8 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1248 × 688, bounds: 1248 × 688, states: [] +size: 1248 × 500, bounds: 1248 × 688, states: [] post-map configures: -size: 1248 × 688, bounds: 1248 × 688, states: [] -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 500, bounds: 1248 × 688, states: [] +size: 1248 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dhF500-wfsBN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dhF500-wfsBN.snap index 19837f5d..c0167fdd 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dhF500-wfsBN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dhF500-wfsBN.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1248 × 688, bounds: 1248 × 688, states: [] +size: 1248 × 500, bounds: 1248 × 688, states: [] post-map configures: -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dhF500-wfsBU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dhF500-wfsBU.snap index d83d87da..9ce1ff78 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dhF500-wfsBU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dhF500-wfsBU.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1248 × 688, bounds: 1248 × 688, states: [] +size: 1248 × 500, bounds: 1248 × 688, states: [] post-map configures: -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dhF500.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dhF500.snap index fb2482aa..7fee94b2 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dhF500.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dhF500.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1248 × 688, bounds: 1248 × 688, states: [] +size: 1248 × 500, bounds: 1248 × 688, states: [] post-map configures: -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dhP0.5-b-wfsAN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dhP0.5-b-wfsAN.snap index 2d83ede6..c861e9b8 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dhP0.5-b-wfsAN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dhP0.5-b-wfsAN.snap @@ -5,11 +5,11 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1240 × 680, bounds: 1240 × 680, states: [] +size: 1240 × 328, bounds: 1240 × 680, states: [] post-map configures: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen] size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dhP0.5-b-wfsAU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dhP0.5-b-wfsAU.snap index c62be3a6..860d046b 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dhP0.5-b-wfsAU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dhP0.5-b-wfsAU.snap @@ -5,8 +5,8 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1240 × 680, bounds: 1240 × 680, states: [] +size: 1240 × 328, bounds: 1240 × 680, states: [] post-map configures: -size: 1240 × 680, bounds: 1240 × 680, states: [] -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 328, bounds: 1240 × 680, states: [] +size: 1240 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dhP0.5-b-wfsBN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dhP0.5-b-wfsBN.snap index 127b22be..1cea781f 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dhP0.5-b-wfsBN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dhP0.5-b-wfsBN.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1240 × 680, bounds: 1240 × 680, states: [] +size: 1240 × 328, bounds: 1240 × 680, states: [] post-map configures: -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dhP0.5-b-wfsBU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dhP0.5-b-wfsBU.snap index 4b429e55..4041bbea 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dhP0.5-b-wfsBU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dhP0.5-b-wfsBU.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1240 × 680, bounds: 1240 × 680, states: [] +size: 1240 × 328, bounds: 1240 × 680, states: [] post-map configures: -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dhP0.5-b.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dhP0.5-b.snap index 6279ca17..d04940bd 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dhP0.5-b.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dhP0.5-b.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1240 × 680, bounds: 1240 × 680, states: [] +size: 1240 × 328, bounds: 1240 × 680, states: [] post-map configures: -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dhP0.5-wfsAN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dhP0.5-wfsAN.snap index 1114ddf5..fba8e5fd 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dhP0.5-wfsAN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dhP0.5-wfsAN.snap @@ -5,11 +5,11 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1248 × 688, bounds: 1248 × 688, states: [] +size: 1248 × 336, bounds: 1248 × 688, states: [] post-map configures: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen] size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dhP0.5-wfsAU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dhP0.5-wfsAU.snap index 7919ae49..2f9a3ff7 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dhP0.5-wfsAU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dhP0.5-wfsAU.snap @@ -5,8 +5,8 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1248 × 688, bounds: 1248 × 688, states: [] +size: 1248 × 336, bounds: 1248 × 688, states: [] post-map configures: -size: 1248 × 688, bounds: 1248 × 688, states: [] -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 336, bounds: 1248 × 688, states: [] +size: 1248 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dhP0.5-wfsBN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dhP0.5-wfsBN.snap index 66eb355c..c22b52fb 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dhP0.5-wfsBN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dhP0.5-wfsBN.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1248 × 688, bounds: 1248 × 688, states: [] +size: 1248 × 336, bounds: 1248 × 688, states: [] post-map configures: -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dhP0.5-wfsBU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dhP0.5-wfsBU.snap index 83a6f432..2edadfa9 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dhP0.5-wfsBU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dhP0.5-wfsBU.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1248 × 688, bounds: 1248 × 688, states: [] +size: 1248 × 336, bounds: 1248 × 688, states: [] post-map configures: -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dhP0.5.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dhP0.5.snap index 36f4f5ca..52cd9a50 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dhP0.5.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dhP0.5.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1248 × 688, bounds: 1248 × 688, states: [] +size: 1248 × 336, bounds: 1248 × 688, states: [] post-map configures: -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwF1000-dhF500-b-wfsAN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwF1000-dhF500-b-wfsAN.snap index 380e68da..2ac69cd4 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwF1000-dhF500-b-wfsAN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwF1000-dhF500-b-wfsAN.snap @@ -5,11 +5,11 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1240 × 680, bounds: 1240 × 680, states: [] +size: 1240 × 500, bounds: 1240 × 680, states: [] post-map configures: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen] size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwF1000-dhF500-b-wfsAU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwF1000-dhF500-b-wfsAU.snap index 9ab268d2..f29b08a6 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwF1000-dhF500-b-wfsAU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwF1000-dhF500-b-wfsAU.snap @@ -5,8 +5,8 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1240 × 680, bounds: 1240 × 680, states: [] +size: 1240 × 500, bounds: 1240 × 680, states: [] post-map configures: -size: 1240 × 680, bounds: 1240 × 680, states: [] -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 500, bounds: 1240 × 680, states: [] +size: 1240 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwF1000-dhF500-b-wfsBN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwF1000-dhF500-b-wfsBN.snap index 4e52e013..7e521285 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwF1000-dhF500-b-wfsBN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwF1000-dhF500-b-wfsBN.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1240 × 680, bounds: 1240 × 680, states: [] +size: 1240 × 500, bounds: 1240 × 680, states: [] post-map configures: -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwF1000-dhF500-b-wfsBU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwF1000-dhF500-b-wfsBU.snap index 2c2dbe0d..85193b21 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwF1000-dhF500-b-wfsBU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwF1000-dhF500-b-wfsBU.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1240 × 680, bounds: 1240 × 680, states: [] +size: 1240 × 500, bounds: 1240 × 680, states: [] post-map configures: -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwF1000-dhF500-b.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwF1000-dhF500-b.snap index 370652c7..add491d2 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwF1000-dhF500-b.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwF1000-dhF500-b.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1240 × 680, bounds: 1240 × 680, states: [] +size: 1240 × 500, bounds: 1240 × 680, states: [] post-map configures: -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwF1000-dhF500-wfsAN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwF1000-dhF500-wfsAN.snap index 46814875..2e75e2fe 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwF1000-dhF500-wfsAN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwF1000-dhF500-wfsAN.snap @@ -5,11 +5,11 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1248 × 688, bounds: 1248 × 688, states: [] +size: 1248 × 500, bounds: 1248 × 688, states: [] post-map configures: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen] size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwF1000-dhF500-wfsAU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwF1000-dhF500-wfsAU.snap index 8183fe6b..b50bc379 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwF1000-dhF500-wfsAU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwF1000-dhF500-wfsAU.snap @@ -5,8 +5,8 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1248 × 688, bounds: 1248 × 688, states: [] +size: 1248 × 500, bounds: 1248 × 688, states: [] post-map configures: -size: 1248 × 688, bounds: 1248 × 688, states: [] -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 500, bounds: 1248 × 688, states: [] +size: 1248 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwF1000-dhF500-wfsBN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwF1000-dhF500-wfsBN.snap index 7165edc4..69bc1480 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwF1000-dhF500-wfsBN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwF1000-dhF500-wfsBN.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1248 × 688, bounds: 1248 × 688, states: [] +size: 1248 × 500, bounds: 1248 × 688, states: [] post-map configures: -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwF1000-dhF500-wfsBU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwF1000-dhF500-wfsBU.snap index 76750d45..da90d42b 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwF1000-dhF500-wfsBU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwF1000-dhF500-wfsBU.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1248 × 688, bounds: 1248 × 688, states: [] +size: 1248 × 500, bounds: 1248 × 688, states: [] post-map configures: -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwF1000-dhF500.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwF1000-dhF500.snap index 93ea06fb..13a3c98d 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwF1000-dhF500.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwF1000-dhF500.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1248 × 688, bounds: 1248 × 688, states: [] +size: 1248 × 500, bounds: 1248 × 688, states: [] post-map configures: -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwF1000-dhP0.5-b-wfsAN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwF1000-dhP0.5-b-wfsAN.snap index 9dceedcf..1cc669e4 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwF1000-dhP0.5-b-wfsAN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwF1000-dhP0.5-b-wfsAN.snap @@ -5,11 +5,11 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1240 × 680, bounds: 1240 × 680, states: [] +size: 1240 × 328, bounds: 1240 × 680, states: [] post-map configures: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen] size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwF1000-dhP0.5-b-wfsAU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwF1000-dhP0.5-b-wfsAU.snap index 231a772b..f613ec47 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwF1000-dhP0.5-b-wfsAU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwF1000-dhP0.5-b-wfsAU.snap @@ -5,8 +5,8 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1240 × 680, bounds: 1240 × 680, states: [] +size: 1240 × 328, bounds: 1240 × 680, states: [] post-map configures: -size: 1240 × 680, bounds: 1240 × 680, states: [] -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 328, bounds: 1240 × 680, states: [] +size: 1240 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwF1000-dhP0.5-b-wfsBN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwF1000-dhP0.5-b-wfsBN.snap index 72468c7d..fab04cd8 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwF1000-dhP0.5-b-wfsBN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwF1000-dhP0.5-b-wfsBN.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1240 × 680, bounds: 1240 × 680, states: [] +size: 1240 × 328, bounds: 1240 × 680, states: [] post-map configures: -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwF1000-dhP0.5-b-wfsBU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwF1000-dhP0.5-b-wfsBU.snap index e10275c8..784d62e3 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwF1000-dhP0.5-b-wfsBU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwF1000-dhP0.5-b-wfsBU.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1240 × 680, bounds: 1240 × 680, states: [] +size: 1240 × 328, bounds: 1240 × 680, states: [] post-map configures: -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwF1000-dhP0.5-b.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwF1000-dhP0.5-b.snap index 81d71ac3..512d6a83 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwF1000-dhP0.5-b.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwF1000-dhP0.5-b.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1240 × 680, bounds: 1240 × 680, states: [] +size: 1240 × 328, bounds: 1240 × 680, states: [] post-map configures: -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwF1000-dhP0.5-wfsAN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwF1000-dhP0.5-wfsAN.snap index 21af078e..913b0e6b 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwF1000-dhP0.5-wfsAN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwF1000-dhP0.5-wfsAN.snap @@ -5,11 +5,11 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1248 × 688, bounds: 1248 × 688, states: [] +size: 1248 × 336, bounds: 1248 × 688, states: [] post-map configures: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen] size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwF1000-dhP0.5-wfsAU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwF1000-dhP0.5-wfsAU.snap index 6fe23c67..d7a44dfc 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwF1000-dhP0.5-wfsAU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwF1000-dhP0.5-wfsAU.snap @@ -5,8 +5,8 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1248 × 688, bounds: 1248 × 688, states: [] +size: 1248 × 336, bounds: 1248 × 688, states: [] post-map configures: -size: 1248 × 688, bounds: 1248 × 688, states: [] -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 336, bounds: 1248 × 688, states: [] +size: 1248 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwF1000-dhP0.5-wfsBN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwF1000-dhP0.5-wfsBN.snap index 5602cf1e..899b467d 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwF1000-dhP0.5-wfsBN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwF1000-dhP0.5-wfsBN.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1248 × 688, bounds: 1248 × 688, states: [] +size: 1248 × 336, bounds: 1248 × 688, states: [] post-map configures: -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwF1000-dhP0.5-wfsBU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwF1000-dhP0.5-wfsBU.snap index 19e34f48..49224cf4 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwF1000-dhP0.5-wfsBU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwF1000-dhP0.5-wfsBU.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1248 × 688, bounds: 1248 × 688, states: [] +size: 1248 × 336, bounds: 1248 × 688, states: [] post-map configures: -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwF1000-dhP0.5.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwF1000-dhP0.5.snap index 3fde9797..e9eda4a5 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwF1000-dhP0.5.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwF1000-dhP0.5.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1248 × 688, bounds: 1248 × 688, states: [] +size: 1248 × 336, bounds: 1248 × 688, states: [] post-map configures: -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwP0.25-dhF500-b-wfsAN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwP0.25-dhF500-b-wfsAN.snap index 70c41d87..d08a6ac2 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwP0.25-dhF500-b-wfsAN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwP0.25-dhF500-b-wfsAN.snap @@ -5,11 +5,11 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1240 × 680, bounds: 1240 × 680, states: [] +size: 1240 × 500, bounds: 1240 × 680, states: [] post-map configures: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen] size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwP0.25-dhF500-b-wfsAU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwP0.25-dhF500-b-wfsAU.snap index 5a09b7be..af45bb43 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwP0.25-dhF500-b-wfsAU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwP0.25-dhF500-b-wfsAU.snap @@ -5,8 +5,8 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1240 × 680, bounds: 1240 × 680, states: [] +size: 1240 × 500, bounds: 1240 × 680, states: [] post-map configures: -size: 1240 × 680, bounds: 1240 × 680, states: [] -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 500, bounds: 1240 × 680, states: [] +size: 1240 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwP0.25-dhF500-b-wfsBN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwP0.25-dhF500-b-wfsBN.snap index 8a0de012..3999bbe5 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwP0.25-dhF500-b-wfsBN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwP0.25-dhF500-b-wfsBN.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1240 × 680, bounds: 1240 × 680, states: [] +size: 1240 × 500, bounds: 1240 × 680, states: [] post-map configures: -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwP0.25-dhF500-b-wfsBU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwP0.25-dhF500-b-wfsBU.snap index f4f02b10..6ac76a26 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwP0.25-dhF500-b-wfsBU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwP0.25-dhF500-b-wfsBU.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1240 × 680, bounds: 1240 × 680, states: [] +size: 1240 × 500, bounds: 1240 × 680, states: [] post-map configures: -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwP0.25-dhF500-b.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwP0.25-dhF500-b.snap index 57d432bf..355fa15d 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwP0.25-dhF500-b.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwP0.25-dhF500-b.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1240 × 680, bounds: 1240 × 680, states: [] +size: 1240 × 500, bounds: 1240 × 680, states: [] post-map configures: -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwP0.25-dhF500-wfsAN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwP0.25-dhF500-wfsAN.snap index c9629ee8..bf7973e8 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwP0.25-dhF500-wfsAN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwP0.25-dhF500-wfsAN.snap @@ -5,11 +5,11 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1248 × 688, bounds: 1248 × 688, states: [] +size: 1248 × 500, bounds: 1248 × 688, states: [] post-map configures: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen] size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwP0.25-dhF500-wfsAU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwP0.25-dhF500-wfsAU.snap index 28b2f153..a3c7b718 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwP0.25-dhF500-wfsAU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwP0.25-dhF500-wfsAU.snap @@ -5,8 +5,8 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1248 × 688, bounds: 1248 × 688, states: [] +size: 1248 × 500, bounds: 1248 × 688, states: [] post-map configures: -size: 1248 × 688, bounds: 1248 × 688, states: [] -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 500, bounds: 1248 × 688, states: [] +size: 1248 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwP0.25-dhF500-wfsBN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwP0.25-dhF500-wfsBN.snap index 88c0b068..f28d06c2 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwP0.25-dhF500-wfsBN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwP0.25-dhF500-wfsBN.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1248 × 688, bounds: 1248 × 688, states: [] +size: 1248 × 500, bounds: 1248 × 688, states: [] post-map configures: -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwP0.25-dhF500-wfsBU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwP0.25-dhF500-wfsBU.snap index a7743e34..5dd17b23 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwP0.25-dhF500-wfsBU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwP0.25-dhF500-wfsBU.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1248 × 688, bounds: 1248 × 688, states: [] +size: 1248 × 500, bounds: 1248 × 688, states: [] post-map configures: -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwP0.25-dhF500.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwP0.25-dhF500.snap index c2e04278..8d2aa73d 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwP0.25-dhF500.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwP0.25-dhF500.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1248 × 688, bounds: 1248 × 688, states: [] +size: 1248 × 500, bounds: 1248 × 688, states: [] post-map configures: -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwP0.25-dhP0.5-b-wfsAN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwP0.25-dhP0.5-b-wfsAN.snap index 6706e194..11e76d77 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwP0.25-dhP0.5-b-wfsAN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwP0.25-dhP0.5-b-wfsAN.snap @@ -5,11 +5,11 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1240 × 680, bounds: 1240 × 680, states: [] +size: 1240 × 328, bounds: 1240 × 680, states: [] post-map configures: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen] size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwP0.25-dhP0.5-b-wfsAU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwP0.25-dhP0.5-b-wfsAU.snap index 6a89e071..6d97d75c 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwP0.25-dhP0.5-b-wfsAU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwP0.25-dhP0.5-b-wfsAU.snap @@ -5,8 +5,8 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1240 × 680, bounds: 1240 × 680, states: [] +size: 1240 × 328, bounds: 1240 × 680, states: [] post-map configures: -size: 1240 × 680, bounds: 1240 × 680, states: [] -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 328, bounds: 1240 × 680, states: [] +size: 1240 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwP0.25-dhP0.5-b-wfsBN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwP0.25-dhP0.5-b-wfsBN.snap index 53c703d4..7630bff5 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwP0.25-dhP0.5-b-wfsBN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwP0.25-dhP0.5-b-wfsBN.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1240 × 680, bounds: 1240 × 680, states: [] +size: 1240 × 328, bounds: 1240 × 680, states: [] post-map configures: -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwP0.25-dhP0.5-b-wfsBU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwP0.25-dhP0.5-b-wfsBU.snap index a61adf3f..527a058d 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwP0.25-dhP0.5-b-wfsBU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwP0.25-dhP0.5-b-wfsBU.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1240 × 680, bounds: 1240 × 680, states: [] +size: 1240 × 328, bounds: 1240 × 680, states: [] post-map configures: -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwP0.25-dhP0.5-b.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwP0.25-dhP0.5-b.snap index f3ef7f95..e6a989f5 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwP0.25-dhP0.5-b.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwP0.25-dhP0.5-b.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1240 × 680, bounds: 1240 × 680, states: [] +size: 1240 × 328, bounds: 1240 × 680, states: [] post-map configures: -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwP0.25-dhP0.5-wfsAN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwP0.25-dhP0.5-wfsAN.snap index 28610af7..c396bce0 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwP0.25-dhP0.5-wfsAN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwP0.25-dhP0.5-wfsAN.snap @@ -5,11 +5,11 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1248 × 688, bounds: 1248 × 688, states: [] +size: 1248 × 336, bounds: 1248 × 688, states: [] post-map configures: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen] size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwP0.25-dhP0.5-wfsAU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwP0.25-dhP0.5-wfsAU.snap index 6079e913..08f536d6 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwP0.25-dhP0.5-wfsAU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwP0.25-dhP0.5-wfsAU.snap @@ -5,8 +5,8 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1248 × 688, bounds: 1248 × 688, states: [] +size: 1248 × 336, bounds: 1248 × 688, states: [] post-map configures: -size: 1248 × 688, bounds: 1248 × 688, states: [] -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 336, bounds: 1248 × 688, states: [] +size: 1248 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwP0.25-dhP0.5-wfsBN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwP0.25-dhP0.5-wfsBN.snap index 69a0a47b..6bbfce25 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwP0.25-dhP0.5-wfsBN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwP0.25-dhP0.5-wfsBN.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1248 × 688, bounds: 1248 × 688, states: [] +size: 1248 × 336, bounds: 1248 × 688, states: [] post-map configures: -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwP0.25-dhP0.5-wfsBU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwP0.25-dhP0.5-wfsBU.snap index d912bde3..fb09238c 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwP0.25-dhP0.5-wfsBU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwP0.25-dhP0.5-wfsBU.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1248 × 688, bounds: 1248 × 688, states: [] +size: 1248 × 336, bounds: 1248 × 688, states: [] post-map configures: -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwP0.25-dhP0.5.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwP0.25-dhP0.5.snap index 9f14bcde..8c0f8290 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwP0.25-dhP0.5.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwP0.25-dhP0.5.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1248 × 688, bounds: 1248 × 688, states: [] +size: 1248 × 336, bounds: 1248 × 688, states: [] post-map configures: -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwU-dhF500-b-wfsAN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwU-dhF500-b-wfsAN.snap index abf0f5f4..d7f99a6d 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwU-dhF500-b-wfsAN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwU-dhF500-b-wfsAN.snap @@ -5,11 +5,11 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1240 × 680, bounds: 1240 × 680, states: [] +size: 1240 × 500, bounds: 1240 × 680, states: [] post-map configures: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen] size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwU-dhF500-b-wfsAU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwU-dhF500-b-wfsAU.snap index 1eb3b7a8..a4d541f4 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwU-dhF500-b-wfsAU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwU-dhF500-b-wfsAU.snap @@ -5,8 +5,8 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1240 × 680, bounds: 1240 × 680, states: [] +size: 1240 × 500, bounds: 1240 × 680, states: [] post-map configures: -size: 1240 × 680, bounds: 1240 × 680, states: [] -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 500, bounds: 1240 × 680, states: [] +size: 1240 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwU-dhF500-b-wfsBN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwU-dhF500-b-wfsBN.snap index 58a82311..bc9079ef 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwU-dhF500-b-wfsBN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwU-dhF500-b-wfsBN.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1240 × 680, bounds: 1240 × 680, states: [] +size: 1240 × 500, bounds: 1240 × 680, states: [] post-map configures: -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwU-dhF500-b-wfsBU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwU-dhF500-b-wfsBU.snap index 51c4d944..a74b080b 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwU-dhF500-b-wfsBU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwU-dhF500-b-wfsBU.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1240 × 680, bounds: 1240 × 680, states: [] +size: 1240 × 500, bounds: 1240 × 680, states: [] post-map configures: -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwU-dhF500-b.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwU-dhF500-b.snap index 5a0443f0..7ecf5c74 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwU-dhF500-b.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwU-dhF500-b.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1240 × 680, bounds: 1240 × 680, states: [] +size: 1240 × 500, bounds: 1240 × 680, states: [] post-map configures: -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwU-dhF500-wfsAN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwU-dhF500-wfsAN.snap index 4baa3a43..14e099b5 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwU-dhF500-wfsAN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwU-dhF500-wfsAN.snap @@ -5,11 +5,11 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1248 × 688, bounds: 1248 × 688, states: [] +size: 1248 × 500, bounds: 1248 × 688, states: [] post-map configures: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen] size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwU-dhF500-wfsAU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwU-dhF500-wfsAU.snap index 197e8624..3b646947 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwU-dhF500-wfsAU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwU-dhF500-wfsAU.snap @@ -5,8 +5,8 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1248 × 688, bounds: 1248 × 688, states: [] +size: 1248 × 500, bounds: 1248 × 688, states: [] post-map configures: -size: 1248 × 688, bounds: 1248 × 688, states: [] -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 500, bounds: 1248 × 688, states: [] +size: 1248 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwU-dhF500-wfsBN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwU-dhF500-wfsBN.snap index ed7cf0ca..f91ed400 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwU-dhF500-wfsBN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwU-dhF500-wfsBN.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1248 × 688, bounds: 1248 × 688, states: [] +size: 1248 × 500, bounds: 1248 × 688, states: [] post-map configures: -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwU-dhF500-wfsBU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwU-dhF500-wfsBU.snap index 493310aa..cabf8cc9 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwU-dhF500-wfsBU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwU-dhF500-wfsBU.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1248 × 688, bounds: 1248 × 688, states: [] +size: 1248 × 500, bounds: 1248 × 688, states: [] post-map configures: -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwU-dhF500.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwU-dhF500.snap index ad55719c..44e14260 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwU-dhF500.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwU-dhF500.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1248 × 688, bounds: 1248 × 688, states: [] +size: 1248 × 500, bounds: 1248 × 688, states: [] post-map configures: -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwU-dhP0.5-b-wfsAN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwU-dhP0.5-b-wfsAN.snap index c5b287b6..0497a688 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwU-dhP0.5-b-wfsAN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwU-dhP0.5-b-wfsAN.snap @@ -5,11 +5,11 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1240 × 680, bounds: 1240 × 680, states: [] +size: 1240 × 328, bounds: 1240 × 680, states: [] post-map configures: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen] size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwU-dhP0.5-b-wfsAU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwU-dhP0.5-b-wfsAU.snap index 6aef9d31..df211090 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwU-dhP0.5-b-wfsAU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwU-dhP0.5-b-wfsAU.snap @@ -5,8 +5,8 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1240 × 680, bounds: 1240 × 680, states: [] +size: 1240 × 328, bounds: 1240 × 680, states: [] post-map configures: -size: 1240 × 680, bounds: 1240 × 680, states: [] -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 328, bounds: 1240 × 680, states: [] +size: 1240 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwU-dhP0.5-b-wfsBN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwU-dhP0.5-b-wfsBN.snap index 807bfeb3..112dcef7 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwU-dhP0.5-b-wfsBN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwU-dhP0.5-b-wfsBN.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1240 × 680, bounds: 1240 × 680, states: [] +size: 1240 × 328, bounds: 1240 × 680, states: [] post-map configures: -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwU-dhP0.5-b-wfsBU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwU-dhP0.5-b-wfsBU.snap index 2d6eca42..d0b82996 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwU-dhP0.5-b-wfsBU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwU-dhP0.5-b-wfsBU.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1240 × 680, bounds: 1240 × 680, states: [] +size: 1240 × 328, bounds: 1240 × 680, states: [] post-map configures: -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwU-dhP0.5-b.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwU-dhP0.5-b.snap index 8f33fde6..400cc3f9 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwU-dhP0.5-b.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwU-dhP0.5-b.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1240 × 680, bounds: 1240 × 680, states: [] +size: 1240 × 328, bounds: 1240 × 680, states: [] post-map configures: -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwU-dhP0.5-wfsAN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwU-dhP0.5-wfsAN.snap index 1104e0f2..f48f1461 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwU-dhP0.5-wfsAN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwU-dhP0.5-wfsAN.snap @@ -5,11 +5,11 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1248 × 688, bounds: 1248 × 688, states: [] +size: 1248 × 336, bounds: 1248 × 688, states: [] post-map configures: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen] size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwU-dhP0.5-wfsAU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwU-dhP0.5-wfsAU.snap index eebdaf0d..910c9534 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwU-dhP0.5-wfsAU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwU-dhP0.5-wfsAU.snap @@ -5,8 +5,8 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1248 × 688, bounds: 1248 × 688, states: [] +size: 1248 × 336, bounds: 1248 × 688, states: [] post-map configures: -size: 1248 × 688, bounds: 1248 × 688, states: [] -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 336, bounds: 1248 × 688, states: [] +size: 1248 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwU-dhP0.5-wfsBN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwU-dhP0.5-wfsBN.snap index a29217e3..531436f1 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwU-dhP0.5-wfsBN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwU-dhP0.5-wfsBN.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1248 × 688, bounds: 1248 × 688, states: [] +size: 1248 × 336, bounds: 1248 × 688, states: [] post-map configures: -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwU-dhP0.5-wfsBU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwU-dhP0.5-wfsBU.snap index 03da9f82..c2e6c630 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwU-dhP0.5-wfsBU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwU-dhP0.5-wfsBU.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1248 × 688, bounds: 1248 × 688, states: [] +size: 1248 × 336, bounds: 1248 × 688, states: [] post-map configures: -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwU-dhP0.5.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwU-dhP0.5.snap index bc81eb5f..8623c40e 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwU-dhP0.5.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsF-omT-dwU-dhP0.5.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1248 × 688, bounds: 1248 × 688, states: [] +size: 1248 × 336, bounds: 1248 × 688, states: [] post-map configures: -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dhF500-b-wfsAN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dhF500-b-wfsAN.snap index 0883a692..81421241 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dhF500-b-wfsAN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dhF500-b-wfsAN.snap @@ -12,4 +12,4 @@ size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen] size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 608 × 680, bounds: 1240 × 680, states: [Activated] +size: 608 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dhF500-b-wfsAU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dhF500-b-wfsAU.snap index e84c8cf4..a9e36f4c 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dhF500-b-wfsAU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dhF500-b-wfsAU.snap @@ -8,5 +8,5 @@ initial configure: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen] post-map configures: -size: 608 × 680, bounds: 1240 × 680, states: [] -size: 608 × 680, bounds: 1240 × 680, states: [Activated] +size: 608 × 500, bounds: 1240 × 680, states: [] +size: 608 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dhF500-b-wfsBN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dhF500-b-wfsBN.snap index ac9e6b92..dfc930cb 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dhF500-b-wfsBN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dhF500-b-wfsBN.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 608 × 680, bounds: 1240 × 680, states: [Activated] +size: 608 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dhF500-b-wfsBU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dhF500-b-wfsBU.snap index beae7313..e9aa3ed0 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dhF500-b-wfsBU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dhF500-b-wfsBU.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 608 × 680, bounds: 1240 × 680, states: [Activated] +size: 608 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dhF500-b.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dhF500-b.snap index d427ffee..0ff55c50 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dhF500-b.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dhF500-b.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 608 × 680, bounds: 1240 × 680, states: [Activated] +size: 608 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dhF500-wfsAN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dhF500-wfsAN.snap index 9c6a2adb..eeaa3c9e 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dhF500-wfsAN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dhF500-wfsAN.snap @@ -12,4 +12,4 @@ size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen] size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 616 × 688, bounds: 1248 × 688, states: [Activated] +size: 616 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dhF500-wfsAU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dhF500-wfsAU.snap index c8a267fc..b6a95d45 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dhF500-wfsAU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dhF500-wfsAU.snap @@ -8,5 +8,5 @@ initial configure: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen] post-map configures: -size: 616 × 688, bounds: 1248 × 688, states: [] -size: 616 × 688, bounds: 1248 × 688, states: [Activated] +size: 616 × 500, bounds: 1248 × 688, states: [] +size: 616 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dhF500-wfsBN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dhF500-wfsBN.snap index 207bfbea..af0e2ffb 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dhF500-wfsBN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dhF500-wfsBN.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 616 × 688, bounds: 1248 × 688, states: [Activated] +size: 616 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dhF500-wfsBU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dhF500-wfsBU.snap index 23331ad6..295ddfa3 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dhF500-wfsBU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dhF500-wfsBU.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 616 × 688, bounds: 1248 × 688, states: [Activated] +size: 616 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dhF500.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dhF500.snap index 3f1104ab..a7f07371 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dhF500.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dhF500.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 616 × 688, bounds: 1248 × 688, states: [Activated] +size: 616 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dhP0.5-b-wfsAN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dhP0.5-b-wfsAN.snap index b4696064..dbb5c0a8 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dhP0.5-b-wfsAN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dhP0.5-b-wfsAN.snap @@ -12,4 +12,4 @@ size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen] size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 608 × 680, bounds: 1240 × 680, states: [Activated] +size: 608 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dhP0.5-b-wfsAU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dhP0.5-b-wfsAU.snap index 5ffdce1a..bf1f95d4 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dhP0.5-b-wfsAU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dhP0.5-b-wfsAU.snap @@ -8,5 +8,5 @@ initial configure: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen] post-map configures: -size: 608 × 680, bounds: 1240 × 680, states: [] -size: 608 × 680, bounds: 1240 × 680, states: [Activated] +size: 608 × 328, bounds: 1240 × 680, states: [] +size: 608 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dhP0.5-b-wfsBN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dhP0.5-b-wfsBN.snap index d96527e0..39acf609 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dhP0.5-b-wfsBN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dhP0.5-b-wfsBN.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 608 × 680, bounds: 1240 × 680, states: [Activated] +size: 608 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dhP0.5-b-wfsBU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dhP0.5-b-wfsBU.snap index 29897af9..9f29c064 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dhP0.5-b-wfsBU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dhP0.5-b-wfsBU.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 608 × 680, bounds: 1240 × 680, states: [Activated] +size: 608 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dhP0.5-b.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dhP0.5-b.snap index ce5dafee..65b0da05 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dhP0.5-b.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dhP0.5-b.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 608 × 680, bounds: 1240 × 680, states: [Activated] +size: 608 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dhP0.5-wfsAN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dhP0.5-wfsAN.snap index 71d740de..eba4eda5 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dhP0.5-wfsAN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dhP0.5-wfsAN.snap @@ -12,4 +12,4 @@ size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen] size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 616 × 688, bounds: 1248 × 688, states: [Activated] +size: 616 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dhP0.5-wfsAU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dhP0.5-wfsAU.snap index 33d961c0..0c8bc2a9 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dhP0.5-wfsAU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dhP0.5-wfsAU.snap @@ -8,5 +8,5 @@ initial configure: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen] post-map configures: -size: 616 × 688, bounds: 1248 × 688, states: [] -size: 616 × 688, bounds: 1248 × 688, states: [Activated] +size: 616 × 336, bounds: 1248 × 688, states: [] +size: 616 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dhP0.5-wfsBN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dhP0.5-wfsBN.snap index 93fb28ed..b8c19290 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dhP0.5-wfsBN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dhP0.5-wfsBN.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 616 × 688, bounds: 1248 × 688, states: [Activated] +size: 616 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dhP0.5-wfsBU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dhP0.5-wfsBU.snap index 2719ee95..831addf4 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dhP0.5-wfsBU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dhP0.5-wfsBU.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 616 × 688, bounds: 1248 × 688, states: [Activated] +size: 616 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dhP0.5.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dhP0.5.snap index a22063da..99be1097 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dhP0.5.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dhP0.5.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 616 × 688, bounds: 1248 × 688, states: [Activated] +size: 616 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwF1000-dhF500-b-wfsAN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwF1000-dhF500-b-wfsAN.snap index 1a43e0de..05a37ff2 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwF1000-dhF500-b-wfsAN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwF1000-dhF500-b-wfsAN.snap @@ -12,4 +12,4 @@ size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen] size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 1000 × 680, bounds: 1240 × 680, states: [Activated] +size: 1000 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwF1000-dhF500-b-wfsAU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwF1000-dhF500-b-wfsAU.snap index 16a683e7..58c8b4fa 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwF1000-dhF500-b-wfsAU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwF1000-dhF500-b-wfsAU.snap @@ -8,5 +8,5 @@ initial configure: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen] post-map configures: -size: 1000 × 680, bounds: 1240 × 680, states: [] -size: 1000 × 680, bounds: 1240 × 680, states: [Activated] +size: 1000 × 500, bounds: 1240 × 680, states: [] +size: 1000 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwF1000-dhF500-b-wfsBN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwF1000-dhF500-b-wfsBN.snap index bd481def..f6ad578f 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwF1000-dhF500-b-wfsBN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwF1000-dhF500-b-wfsBN.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 1000 × 680, bounds: 1240 × 680, states: [Activated] +size: 1000 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwF1000-dhF500-b-wfsBU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwF1000-dhF500-b-wfsBU.snap index 37c97e5b..07b79b55 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwF1000-dhF500-b-wfsBU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwF1000-dhF500-b-wfsBU.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 1000 × 680, bounds: 1240 × 680, states: [Activated] +size: 1000 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwF1000-dhF500-b.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwF1000-dhF500-b.snap index b3bc8b30..04cad058 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwF1000-dhF500-b.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwF1000-dhF500-b.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 1000 × 680, bounds: 1240 × 680, states: [Activated] +size: 1000 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwF1000-dhF500-wfsAN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwF1000-dhF500-wfsAN.snap index 0b435b79..9358749a 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwF1000-dhF500-wfsAN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwF1000-dhF500-wfsAN.snap @@ -12,4 +12,4 @@ size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen] size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 1000 × 688, bounds: 1248 × 688, states: [Activated] +size: 1000 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwF1000-dhF500-wfsAU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwF1000-dhF500-wfsAU.snap index bb1be647..e2bff5ae 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwF1000-dhF500-wfsAU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwF1000-dhF500-wfsAU.snap @@ -8,5 +8,5 @@ initial configure: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen] post-map configures: -size: 1000 × 688, bounds: 1248 × 688, states: [] -size: 1000 × 688, bounds: 1248 × 688, states: [Activated] +size: 1000 × 500, bounds: 1248 × 688, states: [] +size: 1000 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwF1000-dhF500-wfsBN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwF1000-dhF500-wfsBN.snap index 7e95a3a2..34422d56 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwF1000-dhF500-wfsBN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwF1000-dhF500-wfsBN.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 1000 × 688, bounds: 1248 × 688, states: [Activated] +size: 1000 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwF1000-dhF500-wfsBU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwF1000-dhF500-wfsBU.snap index 91f53426..5c6ce228 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwF1000-dhF500-wfsBU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwF1000-dhF500-wfsBU.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 1000 × 688, bounds: 1248 × 688, states: [Activated] +size: 1000 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwF1000-dhF500.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwF1000-dhF500.snap index 8ca76c0d..c93e80aa 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwF1000-dhF500.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwF1000-dhF500.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 1000 × 688, bounds: 1248 × 688, states: [Activated] +size: 1000 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwF1000-dhP0.5-b-wfsAN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwF1000-dhP0.5-b-wfsAN.snap index f45e86f3..61958ac5 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwF1000-dhP0.5-b-wfsAN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwF1000-dhP0.5-b-wfsAN.snap @@ -12,4 +12,4 @@ size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen] size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 1000 × 680, bounds: 1240 × 680, states: [Activated] +size: 1000 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwF1000-dhP0.5-b-wfsAU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwF1000-dhP0.5-b-wfsAU.snap index 702c36dc..186d442d 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwF1000-dhP0.5-b-wfsAU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwF1000-dhP0.5-b-wfsAU.snap @@ -8,5 +8,5 @@ initial configure: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen] post-map configures: -size: 1000 × 680, bounds: 1240 × 680, states: [] -size: 1000 × 680, bounds: 1240 × 680, states: [Activated] +size: 1000 × 328, bounds: 1240 × 680, states: [] +size: 1000 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwF1000-dhP0.5-b-wfsBN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwF1000-dhP0.5-b-wfsBN.snap index 64e3c938..1db016ac 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwF1000-dhP0.5-b-wfsBN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwF1000-dhP0.5-b-wfsBN.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 1000 × 680, bounds: 1240 × 680, states: [Activated] +size: 1000 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwF1000-dhP0.5-b-wfsBU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwF1000-dhP0.5-b-wfsBU.snap index 88eb479b..1c2b8da4 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwF1000-dhP0.5-b-wfsBU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwF1000-dhP0.5-b-wfsBU.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 1000 × 680, bounds: 1240 × 680, states: [Activated] +size: 1000 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwF1000-dhP0.5-b.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwF1000-dhP0.5-b.snap index efc8fa52..b034504b 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwF1000-dhP0.5-b.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwF1000-dhP0.5-b.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 1000 × 680, bounds: 1240 × 680, states: [Activated] +size: 1000 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwF1000-dhP0.5-wfsAN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwF1000-dhP0.5-wfsAN.snap index 3c16f5a8..7f0266c6 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwF1000-dhP0.5-wfsAN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwF1000-dhP0.5-wfsAN.snap @@ -12,4 +12,4 @@ size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen] size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 1000 × 688, bounds: 1248 × 688, states: [Activated] +size: 1000 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwF1000-dhP0.5-wfsAU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwF1000-dhP0.5-wfsAU.snap index 94ca7cdf..a9d01ea8 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwF1000-dhP0.5-wfsAU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwF1000-dhP0.5-wfsAU.snap @@ -8,5 +8,5 @@ initial configure: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen] post-map configures: -size: 1000 × 688, bounds: 1248 × 688, states: [] -size: 1000 × 688, bounds: 1248 × 688, states: [Activated] +size: 1000 × 336, bounds: 1248 × 688, states: [] +size: 1000 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwF1000-dhP0.5-wfsBN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwF1000-dhP0.5-wfsBN.snap index 6203f7d4..d74abd2d 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwF1000-dhP0.5-wfsBN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwF1000-dhP0.5-wfsBN.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 1000 × 688, bounds: 1248 × 688, states: [Activated] +size: 1000 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwF1000-dhP0.5-wfsBU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwF1000-dhP0.5-wfsBU.snap index e9e13dbe..3e0baa4f 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwF1000-dhP0.5-wfsBU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwF1000-dhP0.5-wfsBU.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 1000 × 688, bounds: 1248 × 688, states: [Activated] +size: 1000 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwF1000-dhP0.5.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwF1000-dhP0.5.snap index 7c141829..7c78069a 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwF1000-dhP0.5.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwF1000-dhP0.5.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 1000 × 688, bounds: 1248 × 688, states: [Activated] +size: 1000 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwP0.25-dhF500-b-wfsAN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwP0.25-dhF500-b-wfsAN.snap index 77a1e477..07088f08 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwP0.25-dhF500-b-wfsAN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwP0.25-dhF500-b-wfsAN.snap @@ -12,4 +12,4 @@ size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen] size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 292 × 680, bounds: 1240 × 680, states: [Activated] +size: 292 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwP0.25-dhF500-b-wfsAU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwP0.25-dhF500-b-wfsAU.snap index 44d7553b..64d33468 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwP0.25-dhF500-b-wfsAU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwP0.25-dhF500-b-wfsAU.snap @@ -8,5 +8,5 @@ initial configure: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen] post-map configures: -size: 292 × 680, bounds: 1240 × 680, states: [] -size: 292 × 680, bounds: 1240 × 680, states: [Activated] +size: 292 × 500, bounds: 1240 × 680, states: [] +size: 292 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwP0.25-dhF500-b-wfsBN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwP0.25-dhF500-b-wfsBN.snap index 097eb3ef..42164473 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwP0.25-dhF500-b-wfsBN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwP0.25-dhF500-b-wfsBN.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 292 × 680, bounds: 1240 × 680, states: [Activated] +size: 292 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwP0.25-dhF500-b-wfsBU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwP0.25-dhF500-b-wfsBU.snap index f6d1a7e3..bee3bf8b 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwP0.25-dhF500-b-wfsBU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwP0.25-dhF500-b-wfsBU.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 292 × 680, bounds: 1240 × 680, states: [Activated] +size: 292 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwP0.25-dhF500-b.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwP0.25-dhF500-b.snap index 5a706252..0e83fc8d 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwP0.25-dhF500-b.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwP0.25-dhF500-b.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 292 × 680, bounds: 1240 × 680, states: [Activated] +size: 292 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwP0.25-dhF500-wfsAN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwP0.25-dhF500-wfsAN.snap index 19f32cb8..b58ad85b 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwP0.25-dhF500-wfsAN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwP0.25-dhF500-wfsAN.snap @@ -12,4 +12,4 @@ size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen] size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 300 × 688, bounds: 1248 × 688, states: [Activated] +size: 300 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwP0.25-dhF500-wfsAU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwP0.25-dhF500-wfsAU.snap index 8dd2e540..6891e308 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwP0.25-dhF500-wfsAU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwP0.25-dhF500-wfsAU.snap @@ -8,5 +8,5 @@ initial configure: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen] post-map configures: -size: 300 × 688, bounds: 1248 × 688, states: [] -size: 300 × 688, bounds: 1248 × 688, states: [Activated] +size: 300 × 500, bounds: 1248 × 688, states: [] +size: 300 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwP0.25-dhF500-wfsBN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwP0.25-dhF500-wfsBN.snap index 645ddc61..9c17ab97 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwP0.25-dhF500-wfsBN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwP0.25-dhF500-wfsBN.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 300 × 688, bounds: 1248 × 688, states: [Activated] +size: 300 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwP0.25-dhF500-wfsBU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwP0.25-dhF500-wfsBU.snap index 686c03bd..559b1cd2 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwP0.25-dhF500-wfsBU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwP0.25-dhF500-wfsBU.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 300 × 688, bounds: 1248 × 688, states: [Activated] +size: 300 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwP0.25-dhF500.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwP0.25-dhF500.snap index 4b74f499..32e26fc0 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwP0.25-dhF500.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwP0.25-dhF500.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 300 × 688, bounds: 1248 × 688, states: [Activated] +size: 300 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwP0.25-dhP0.5-b-wfsAN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwP0.25-dhP0.5-b-wfsAN.snap index 4b88bb8b..67954427 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwP0.25-dhP0.5-b-wfsAN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwP0.25-dhP0.5-b-wfsAN.snap @@ -12,4 +12,4 @@ size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen] size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 292 × 680, bounds: 1240 × 680, states: [Activated] +size: 292 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwP0.25-dhP0.5-b-wfsAU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwP0.25-dhP0.5-b-wfsAU.snap index 2b095447..587a19c7 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwP0.25-dhP0.5-b-wfsAU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwP0.25-dhP0.5-b-wfsAU.snap @@ -8,5 +8,5 @@ initial configure: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen] post-map configures: -size: 292 × 680, bounds: 1240 × 680, states: [] -size: 292 × 680, bounds: 1240 × 680, states: [Activated] +size: 292 × 328, bounds: 1240 × 680, states: [] +size: 292 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwP0.25-dhP0.5-b-wfsBN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwP0.25-dhP0.5-b-wfsBN.snap index 45c023db..c9ce430a 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwP0.25-dhP0.5-b-wfsBN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwP0.25-dhP0.5-b-wfsBN.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 292 × 680, bounds: 1240 × 680, states: [Activated] +size: 292 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwP0.25-dhP0.5-b-wfsBU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwP0.25-dhP0.5-b-wfsBU.snap index a483a7f8..29c7cc47 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwP0.25-dhP0.5-b-wfsBU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwP0.25-dhP0.5-b-wfsBU.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 292 × 680, bounds: 1240 × 680, states: [Activated] +size: 292 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwP0.25-dhP0.5-b.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwP0.25-dhP0.5-b.snap index 55380b77..30bc4691 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwP0.25-dhP0.5-b.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwP0.25-dhP0.5-b.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 292 × 680, bounds: 1240 × 680, states: [Activated] +size: 292 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwP0.25-dhP0.5-wfsAN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwP0.25-dhP0.5-wfsAN.snap index 5a4b25d2..9a058c3f 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwP0.25-dhP0.5-wfsAN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwP0.25-dhP0.5-wfsAN.snap @@ -12,4 +12,4 @@ size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen] size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 300 × 688, bounds: 1248 × 688, states: [Activated] +size: 300 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwP0.25-dhP0.5-wfsAU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwP0.25-dhP0.5-wfsAU.snap index 80feea15..03ce1c1d 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwP0.25-dhP0.5-wfsAU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwP0.25-dhP0.5-wfsAU.snap @@ -8,5 +8,5 @@ initial configure: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen] post-map configures: -size: 300 × 688, bounds: 1248 × 688, states: [] -size: 300 × 688, bounds: 1248 × 688, states: [Activated] +size: 300 × 336, bounds: 1248 × 688, states: [] +size: 300 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwP0.25-dhP0.5-wfsBN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwP0.25-dhP0.5-wfsBN.snap index 2d0c7ba3..6cfa9d22 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwP0.25-dhP0.5-wfsBN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwP0.25-dhP0.5-wfsBN.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 300 × 688, bounds: 1248 × 688, states: [Activated] +size: 300 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwP0.25-dhP0.5-wfsBU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwP0.25-dhP0.5-wfsBU.snap index fe5e79cb..1046458e 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwP0.25-dhP0.5-wfsBU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwP0.25-dhP0.5-wfsBU.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 300 × 688, bounds: 1248 × 688, states: [Activated] +size: 300 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwP0.25-dhP0.5.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwP0.25-dhP0.5.snap index 816b4e36..1b27d06a 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwP0.25-dhP0.5.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwP0.25-dhP0.5.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 300 × 688, bounds: 1248 × 688, states: [Activated] +size: 300 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwU-dhF500-b-wfsAN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwU-dhF500-b-wfsAN.snap index 3bb94808..f7d21939 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwU-dhF500-b-wfsAN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwU-dhF500-b-wfsAN.snap @@ -12,4 +12,4 @@ size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen] size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 1 × 680, bounds: 1240 × 680, states: [Activated] +size: 1 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwU-dhF500-b-wfsAU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwU-dhF500-b-wfsAU.snap index 6571ea82..cc9d3846 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwU-dhF500-b-wfsAU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwU-dhF500-b-wfsAU.snap @@ -8,5 +8,5 @@ initial configure: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen] post-map configures: -size: 0 × 680, bounds: 1240 × 680, states: [] -size: 1 × 680, bounds: 1240 × 680, states: [Activated] +size: 0 × 500, bounds: 1240 × 680, states: [] +size: 1 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwU-dhF500-b-wfsBN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwU-dhF500-b-wfsBN.snap index a7fe6f7d..5e56c62b 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwU-dhF500-b-wfsBN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwU-dhF500-b-wfsBN.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 1 × 680, bounds: 1240 × 680, states: [Activated] +size: 1 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwU-dhF500-b-wfsBU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwU-dhF500-b-wfsBU.snap index 6d14a3fd..4b7f58b7 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwU-dhF500-b-wfsBU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwU-dhF500-b-wfsBU.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 1 × 680, bounds: 1240 × 680, states: [Activated] +size: 1 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwU-dhF500-b.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwU-dhF500-b.snap index 6ad1d689..c6e69a21 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwU-dhF500-b.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwU-dhF500-b.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 1 × 680, bounds: 1240 × 680, states: [Activated] +size: 1 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwU-dhF500-wfsAN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwU-dhF500-wfsAN.snap index 3b1addd4..0bbc19b8 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwU-dhF500-wfsAN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwU-dhF500-wfsAN.snap @@ -12,4 +12,4 @@ size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen] size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 1 × 688, bounds: 1248 × 688, states: [Activated] +size: 1 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwU-dhF500-wfsAU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwU-dhF500-wfsAU.snap index 00463a64..8b066935 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwU-dhF500-wfsAU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwU-dhF500-wfsAU.snap @@ -8,5 +8,5 @@ initial configure: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen] post-map configures: -size: 0 × 688, bounds: 1248 × 688, states: [] -size: 1 × 688, bounds: 1248 × 688, states: [Activated] +size: 0 × 500, bounds: 1248 × 688, states: [] +size: 1 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwU-dhF500-wfsBN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwU-dhF500-wfsBN.snap index 31681930..c50205d6 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwU-dhF500-wfsBN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwU-dhF500-wfsBN.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 1 × 688, bounds: 1248 × 688, states: [Activated] +size: 1 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwU-dhF500-wfsBU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwU-dhF500-wfsBU.snap index 3e2a00a9..0b9cad68 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwU-dhF500-wfsBU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwU-dhF500-wfsBU.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 1 × 688, bounds: 1248 × 688, states: [Activated] +size: 1 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwU-dhF500.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwU-dhF500.snap index d88ee6d1..9e8a6f72 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwU-dhF500.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwU-dhF500.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 1 × 688, bounds: 1248 × 688, states: [Activated] +size: 1 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwU-dhP0.5-b-wfsAN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwU-dhP0.5-b-wfsAN.snap index d2301ab0..6f3a798e 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwU-dhP0.5-b-wfsAN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwU-dhP0.5-b-wfsAN.snap @@ -12,4 +12,4 @@ size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen] size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 1 × 680, bounds: 1240 × 680, states: [Activated] +size: 1 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwU-dhP0.5-b-wfsAU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwU-dhP0.5-b-wfsAU.snap index cabe4f95..fe560ead 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwU-dhP0.5-b-wfsAU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwU-dhP0.5-b-wfsAU.snap @@ -8,5 +8,5 @@ initial configure: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen] post-map configures: -size: 0 × 680, bounds: 1240 × 680, states: [] -size: 1 × 680, bounds: 1240 × 680, states: [Activated] +size: 0 × 328, bounds: 1240 × 680, states: [] +size: 1 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwU-dhP0.5-b-wfsBN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwU-dhP0.5-b-wfsBN.snap index 6191d6d7..37aefa83 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwU-dhP0.5-b-wfsBN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwU-dhP0.5-b-wfsBN.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 1 × 680, bounds: 1240 × 680, states: [Activated] +size: 1 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwU-dhP0.5-b-wfsBU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwU-dhP0.5-b-wfsBU.snap index 5bbdf0a1..b923adfb 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwU-dhP0.5-b-wfsBU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwU-dhP0.5-b-wfsBU.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 1 × 680, bounds: 1240 × 680, states: [Activated] +size: 1 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwU-dhP0.5-b.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwU-dhP0.5-b.snap index 83843d13..e94f620d 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwU-dhP0.5-b.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwU-dhP0.5-b.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 1 × 680, bounds: 1240 × 680, states: [Activated] +size: 1 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwU-dhP0.5-wfsAN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwU-dhP0.5-wfsAN.snap index 7f7889c8..142c587b 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwU-dhP0.5-wfsAN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwU-dhP0.5-wfsAN.snap @@ -12,4 +12,4 @@ size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen] size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 1 × 688, bounds: 1248 × 688, states: [Activated] +size: 1 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwU-dhP0.5-wfsAU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwU-dhP0.5-wfsAU.snap index bc33cbb4..60201833 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwU-dhP0.5-wfsAU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwU-dhP0.5-wfsAU.snap @@ -8,5 +8,5 @@ initial configure: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen] post-map configures: -size: 0 × 688, bounds: 1248 × 688, states: [] -size: 1 × 688, bounds: 1248 × 688, states: [Activated] +size: 0 × 336, bounds: 1248 × 688, states: [] +size: 1 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwU-dhP0.5-wfsBN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwU-dhP0.5-wfsBN.snap index a3c89a1f..5468eb67 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwU-dhP0.5-wfsBN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwU-dhP0.5-wfsBN.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 1 × 688, bounds: 1248 × 688, states: [Activated] +size: 1 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwU-dhP0.5-wfsBU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwU-dhP0.5-wfsBU.snap index 5bfd984a..b8ff9944 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwU-dhP0.5-wfsBU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwU-dhP0.5-wfsBU.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 1 × 688, bounds: 1248 × 688, states: [Activated] +size: 1 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwU-dhP0.5.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwU-dhP0.5.snap index 43794003..54e21b8e 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwU-dhP0.5.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-dwU-dhP0.5.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 1 × 688, bounds: 1248 × 688, states: [Activated] +size: 1 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dhF500-b-wfsAN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dhF500-b-wfsAN.snap index 50eae982..e3530f3b 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dhF500-b-wfsAN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dhF500-b-wfsAN.snap @@ -12,4 +12,4 @@ size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen] size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dhF500-b-wfsAU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dhF500-b-wfsAU.snap index 3888ab7e..6dfcf05d 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dhF500-b-wfsAU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dhF500-b-wfsAU.snap @@ -8,5 +8,5 @@ initial configure: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen] post-map configures: -size: 1240 × 680, bounds: 1240 × 680, states: [] -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 500, bounds: 1240 × 680, states: [] +size: 1240 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dhF500-b-wfsBN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dhF500-b-wfsBN.snap index 7605363e..80af098c 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dhF500-b-wfsBN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dhF500-b-wfsBN.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dhF500-b-wfsBU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dhF500-b-wfsBU.snap index 6710cc10..11f01cf7 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dhF500-b-wfsBU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dhF500-b-wfsBU.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dhF500-b.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dhF500-b.snap index 556410a7..d8077ab8 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dhF500-b.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dhF500-b.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dhF500-wfsAN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dhF500-wfsAN.snap index 1baf154b..8bc7767d 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dhF500-wfsAN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dhF500-wfsAN.snap @@ -12,4 +12,4 @@ size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen] size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dhF500-wfsAU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dhF500-wfsAU.snap index db2c8c2b..37b4c967 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dhF500-wfsAU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dhF500-wfsAU.snap @@ -8,5 +8,5 @@ initial configure: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen] post-map configures: -size: 1248 × 688, bounds: 1248 × 688, states: [] -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 500, bounds: 1248 × 688, states: [] +size: 1248 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dhF500-wfsBN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dhF500-wfsBN.snap index b4ab4893..55907979 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dhF500-wfsBN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dhF500-wfsBN.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dhF500-wfsBU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dhF500-wfsBU.snap index e3e31793..ed0ee7a9 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dhF500-wfsBU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dhF500-wfsBU.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dhF500.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dhF500.snap index 66f6d85e..c1f07e75 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dhF500.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dhF500.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dhP0.5-b-wfsAN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dhP0.5-b-wfsAN.snap index 08499ec0..ab0cd95f 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dhP0.5-b-wfsAN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dhP0.5-b-wfsAN.snap @@ -12,4 +12,4 @@ size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen] size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dhP0.5-b-wfsAU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dhP0.5-b-wfsAU.snap index c648b03a..850fa10e 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dhP0.5-b-wfsAU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dhP0.5-b-wfsAU.snap @@ -8,5 +8,5 @@ initial configure: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen] post-map configures: -size: 1240 × 680, bounds: 1240 × 680, states: [] -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 328, bounds: 1240 × 680, states: [] +size: 1240 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dhP0.5-b-wfsBN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dhP0.5-b-wfsBN.snap index 656f9824..d2d48d9c 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dhP0.5-b-wfsBN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dhP0.5-b-wfsBN.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dhP0.5-b-wfsBU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dhP0.5-b-wfsBU.snap index 0889f8a3..acb85bae 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dhP0.5-b-wfsBU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dhP0.5-b-wfsBU.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dhP0.5-b.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dhP0.5-b.snap index acbf4a3d..b2ab8004 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dhP0.5-b.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dhP0.5-b.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dhP0.5-wfsAN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dhP0.5-wfsAN.snap index cec3e620..6eb81f30 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dhP0.5-wfsAN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dhP0.5-wfsAN.snap @@ -12,4 +12,4 @@ size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen] size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dhP0.5-wfsAU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dhP0.5-wfsAU.snap index cdb31be5..2b1db823 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dhP0.5-wfsAU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dhP0.5-wfsAU.snap @@ -8,5 +8,5 @@ initial configure: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen] post-map configures: -size: 1248 × 688, bounds: 1248 × 688, states: [] -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 336, bounds: 1248 × 688, states: [] +size: 1248 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dhP0.5-wfsBN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dhP0.5-wfsBN.snap index 60b9549a..46385889 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dhP0.5-wfsBN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dhP0.5-wfsBN.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dhP0.5-wfsBU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dhP0.5-wfsBU.snap index bbeb0cf2..8999c048 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dhP0.5-wfsBU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dhP0.5-wfsBU.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dhP0.5.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dhP0.5.snap index e4bc83e9..e359d6d3 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dhP0.5.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dhP0.5.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwF1000-dhF500-b-wfsAN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwF1000-dhF500-b-wfsAN.snap index 1e4a76f5..ef570a7e 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwF1000-dhF500-b-wfsAN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwF1000-dhF500-b-wfsAN.snap @@ -12,4 +12,4 @@ size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen] size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwF1000-dhF500-b-wfsAU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwF1000-dhF500-b-wfsAU.snap index 9dfa2908..7bbd2af4 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwF1000-dhF500-b-wfsAU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwF1000-dhF500-b-wfsAU.snap @@ -8,5 +8,5 @@ initial configure: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen] post-map configures: -size: 1240 × 680, bounds: 1240 × 680, states: [] -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 500, bounds: 1240 × 680, states: [] +size: 1240 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwF1000-dhF500-b-wfsBN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwF1000-dhF500-b-wfsBN.snap index a63461e6..69788f85 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwF1000-dhF500-b-wfsBN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwF1000-dhF500-b-wfsBN.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwF1000-dhF500-b-wfsBU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwF1000-dhF500-b-wfsBU.snap index 1a26e2e8..801d0866 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwF1000-dhF500-b-wfsBU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwF1000-dhF500-b-wfsBU.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwF1000-dhF500-b.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwF1000-dhF500-b.snap index ac62ee46..bdd6affa 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwF1000-dhF500-b.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwF1000-dhF500-b.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwF1000-dhF500-wfsAN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwF1000-dhF500-wfsAN.snap index 64f8b34b..b62a8afb 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwF1000-dhF500-wfsAN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwF1000-dhF500-wfsAN.snap @@ -12,4 +12,4 @@ size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen] size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwF1000-dhF500-wfsAU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwF1000-dhF500-wfsAU.snap index d3af875a..c877aa41 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwF1000-dhF500-wfsAU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwF1000-dhF500-wfsAU.snap @@ -8,5 +8,5 @@ initial configure: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen] post-map configures: -size: 1248 × 688, bounds: 1248 × 688, states: [] -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 500, bounds: 1248 × 688, states: [] +size: 1248 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwF1000-dhF500-wfsBN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwF1000-dhF500-wfsBN.snap index 146ff55e..b754905b 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwF1000-dhF500-wfsBN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwF1000-dhF500-wfsBN.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwF1000-dhF500-wfsBU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwF1000-dhF500-wfsBU.snap index 5acf7f86..e87ac056 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwF1000-dhF500-wfsBU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwF1000-dhF500-wfsBU.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwF1000-dhF500.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwF1000-dhF500.snap index 0f997997..215d4f95 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwF1000-dhF500.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwF1000-dhF500.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwF1000-dhP0.5-b-wfsAN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwF1000-dhP0.5-b-wfsAN.snap index f7c047c5..8597982a 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwF1000-dhP0.5-b-wfsAN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwF1000-dhP0.5-b-wfsAN.snap @@ -12,4 +12,4 @@ size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen] size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwF1000-dhP0.5-b-wfsAU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwF1000-dhP0.5-b-wfsAU.snap index 385b3d9a..8ada0d25 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwF1000-dhP0.5-b-wfsAU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwF1000-dhP0.5-b-wfsAU.snap @@ -8,5 +8,5 @@ initial configure: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen] post-map configures: -size: 1240 × 680, bounds: 1240 × 680, states: [] -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 328, bounds: 1240 × 680, states: [] +size: 1240 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwF1000-dhP0.5-b-wfsBN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwF1000-dhP0.5-b-wfsBN.snap index 1f387a80..87ff87ce 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwF1000-dhP0.5-b-wfsBN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwF1000-dhP0.5-b-wfsBN.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwF1000-dhP0.5-b-wfsBU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwF1000-dhP0.5-b-wfsBU.snap index 0d923871..63dd637b 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwF1000-dhP0.5-b-wfsBU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwF1000-dhP0.5-b-wfsBU.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwF1000-dhP0.5-b.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwF1000-dhP0.5-b.snap index 5b1986cd..3813809f 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwF1000-dhP0.5-b.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwF1000-dhP0.5-b.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwF1000-dhP0.5-wfsAN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwF1000-dhP0.5-wfsAN.snap index 8e298905..8febe68b 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwF1000-dhP0.5-wfsAN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwF1000-dhP0.5-wfsAN.snap @@ -12,4 +12,4 @@ size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen] size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwF1000-dhP0.5-wfsAU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwF1000-dhP0.5-wfsAU.snap index 71aa02cc..dff3991d 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwF1000-dhP0.5-wfsAU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwF1000-dhP0.5-wfsAU.snap @@ -8,5 +8,5 @@ initial configure: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen] post-map configures: -size: 1248 × 688, bounds: 1248 × 688, states: [] -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 336, bounds: 1248 × 688, states: [] +size: 1248 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwF1000-dhP0.5-wfsBN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwF1000-dhP0.5-wfsBN.snap index baebd064..e71d3535 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwF1000-dhP0.5-wfsBN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwF1000-dhP0.5-wfsBN.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwF1000-dhP0.5-wfsBU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwF1000-dhP0.5-wfsBU.snap index ae5e3a1f..1a66755e 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwF1000-dhP0.5-wfsBU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwF1000-dhP0.5-wfsBU.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwF1000-dhP0.5.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwF1000-dhP0.5.snap index 4d31f629..4be33f09 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwF1000-dhP0.5.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwF1000-dhP0.5.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwP0.25-dhF500-b-wfsAN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwP0.25-dhF500-b-wfsAN.snap index 3138d2ab..06d31dca 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwP0.25-dhF500-b-wfsAN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwP0.25-dhF500-b-wfsAN.snap @@ -12,4 +12,4 @@ size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen] size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwP0.25-dhF500-b-wfsAU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwP0.25-dhF500-b-wfsAU.snap index b06f165b..4adf5fba 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwP0.25-dhF500-b-wfsAU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwP0.25-dhF500-b-wfsAU.snap @@ -8,5 +8,5 @@ initial configure: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen] post-map configures: -size: 1240 × 680, bounds: 1240 × 680, states: [] -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 500, bounds: 1240 × 680, states: [] +size: 1240 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwP0.25-dhF500-b-wfsBN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwP0.25-dhF500-b-wfsBN.snap index 1c92a9ea..c476c030 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwP0.25-dhF500-b-wfsBN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwP0.25-dhF500-b-wfsBN.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwP0.25-dhF500-b-wfsBU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwP0.25-dhF500-b-wfsBU.snap index 90939e76..0feece7d 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwP0.25-dhF500-b-wfsBU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwP0.25-dhF500-b-wfsBU.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwP0.25-dhF500-b.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwP0.25-dhF500-b.snap index 6168354e..350dd385 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwP0.25-dhF500-b.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwP0.25-dhF500-b.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwP0.25-dhF500-wfsAN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwP0.25-dhF500-wfsAN.snap index 3e846d5a..29bee6e4 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwP0.25-dhF500-wfsAN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwP0.25-dhF500-wfsAN.snap @@ -12,4 +12,4 @@ size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen] size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwP0.25-dhF500-wfsAU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwP0.25-dhF500-wfsAU.snap index 2609e16d..3470001e 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwP0.25-dhF500-wfsAU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwP0.25-dhF500-wfsAU.snap @@ -8,5 +8,5 @@ initial configure: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen] post-map configures: -size: 1248 × 688, bounds: 1248 × 688, states: [] -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 500, bounds: 1248 × 688, states: [] +size: 1248 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwP0.25-dhF500-wfsBN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwP0.25-dhF500-wfsBN.snap index ea3f0652..69733cea 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwP0.25-dhF500-wfsBN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwP0.25-dhF500-wfsBN.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwP0.25-dhF500-wfsBU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwP0.25-dhF500-wfsBU.snap index f40c4b62..165ce353 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwP0.25-dhF500-wfsBU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwP0.25-dhF500-wfsBU.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwP0.25-dhF500.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwP0.25-dhF500.snap index aefa8e81..3392614e 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwP0.25-dhF500.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwP0.25-dhF500.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwP0.25-dhP0.5-b-wfsAN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwP0.25-dhP0.5-b-wfsAN.snap index 4b88012f..d3c859d4 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwP0.25-dhP0.5-b-wfsAN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwP0.25-dhP0.5-b-wfsAN.snap @@ -12,4 +12,4 @@ size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen] size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwP0.25-dhP0.5-b-wfsAU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwP0.25-dhP0.5-b-wfsAU.snap index db64389b..90c55b4f 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwP0.25-dhP0.5-b-wfsAU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwP0.25-dhP0.5-b-wfsAU.snap @@ -8,5 +8,5 @@ initial configure: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen] post-map configures: -size: 1240 × 680, bounds: 1240 × 680, states: [] -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 328, bounds: 1240 × 680, states: [] +size: 1240 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwP0.25-dhP0.5-b-wfsBN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwP0.25-dhP0.5-b-wfsBN.snap index a8d9f23c..8388cdb2 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwP0.25-dhP0.5-b-wfsBN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwP0.25-dhP0.5-b-wfsBN.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwP0.25-dhP0.5-b-wfsBU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwP0.25-dhP0.5-b-wfsBU.snap index f1e35bb8..05998bd8 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwP0.25-dhP0.5-b-wfsBU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwP0.25-dhP0.5-b-wfsBU.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwP0.25-dhP0.5-b.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwP0.25-dhP0.5-b.snap index 81aa1038..9ce1b782 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwP0.25-dhP0.5-b.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwP0.25-dhP0.5-b.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwP0.25-dhP0.5-wfsAN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwP0.25-dhP0.5-wfsAN.snap index 32a784b6..ead96610 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwP0.25-dhP0.5-wfsAN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwP0.25-dhP0.5-wfsAN.snap @@ -12,4 +12,4 @@ size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen] size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwP0.25-dhP0.5-wfsAU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwP0.25-dhP0.5-wfsAU.snap index 15c6f7d3..1cf70d58 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwP0.25-dhP0.5-wfsAU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwP0.25-dhP0.5-wfsAU.snap @@ -8,5 +8,5 @@ initial configure: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen] post-map configures: -size: 1248 × 688, bounds: 1248 × 688, states: [] -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 336, bounds: 1248 × 688, states: [] +size: 1248 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwP0.25-dhP0.5-wfsBN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwP0.25-dhP0.5-wfsBN.snap index a606f5d0..f97874c4 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwP0.25-dhP0.5-wfsBN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwP0.25-dhP0.5-wfsBN.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwP0.25-dhP0.5-wfsBU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwP0.25-dhP0.5-wfsBU.snap index 5bdc086f..21139304 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwP0.25-dhP0.5-wfsBU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwP0.25-dhP0.5-wfsBU.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwP0.25-dhP0.5.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwP0.25-dhP0.5.snap index b9a22e6d..624a4cd8 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwP0.25-dhP0.5.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwP0.25-dhP0.5.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwU-dhF500-b-wfsAN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwU-dhF500-b-wfsAN.snap index b7914d68..338716f5 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwU-dhF500-b-wfsAN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwU-dhF500-b-wfsAN.snap @@ -12,4 +12,4 @@ size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen] size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwU-dhF500-b-wfsAU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwU-dhF500-b-wfsAU.snap index a8e6af87..93e418c9 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwU-dhF500-b-wfsAU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwU-dhF500-b-wfsAU.snap @@ -8,5 +8,5 @@ initial configure: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen] post-map configures: -size: 1240 × 680, bounds: 1240 × 680, states: [] -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 500, bounds: 1240 × 680, states: [] +size: 1240 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwU-dhF500-b-wfsBN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwU-dhF500-b-wfsBN.snap index fb8556bf..5b582490 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwU-dhF500-b-wfsBN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwU-dhF500-b-wfsBN.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwU-dhF500-b-wfsBU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwU-dhF500-b-wfsBU.snap index 986e6b64..1eecdf26 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwU-dhF500-b-wfsBU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwU-dhF500-b-wfsBU.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwU-dhF500-b.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwU-dhF500-b.snap index a7637eed..126f994e 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwU-dhF500-b.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwU-dhF500-b.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwU-dhF500-wfsAN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwU-dhF500-wfsAN.snap index 49ac1797..726cc8d6 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwU-dhF500-wfsAN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwU-dhF500-wfsAN.snap @@ -12,4 +12,4 @@ size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen] size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwU-dhF500-wfsAU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwU-dhF500-wfsAU.snap index cdc85cec..93abcc53 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwU-dhF500-wfsAU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwU-dhF500-wfsAU.snap @@ -8,5 +8,5 @@ initial configure: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen] post-map configures: -size: 1248 × 688, bounds: 1248 × 688, states: [] -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 500, bounds: 1248 × 688, states: [] +size: 1248 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwU-dhF500-wfsBN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwU-dhF500-wfsBN.snap index 12471dd6..d923ab96 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwU-dhF500-wfsBN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwU-dhF500-wfsBN.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwU-dhF500-wfsBU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwU-dhF500-wfsBU.snap index f6c69454..8fadf564 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwU-dhF500-wfsBU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwU-dhF500-wfsBU.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwU-dhF500.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwU-dhF500.snap index 91e4a603..2a65b439 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwU-dhF500.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwU-dhF500.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwU-dhP0.5-b-wfsAN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwU-dhP0.5-b-wfsAN.snap index f2ae03cc..9b0b9f4d 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwU-dhP0.5-b-wfsAN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwU-dhP0.5-b-wfsAN.snap @@ -12,4 +12,4 @@ size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen] size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwU-dhP0.5-b-wfsAU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwU-dhP0.5-b-wfsAU.snap index 71915404..d8a47110 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwU-dhP0.5-b-wfsAU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwU-dhP0.5-b-wfsAU.snap @@ -8,5 +8,5 @@ initial configure: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen] post-map configures: -size: 1240 × 680, bounds: 1240 × 680, states: [] -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 328, bounds: 1240 × 680, states: [] +size: 1240 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwU-dhP0.5-b-wfsBN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwU-dhP0.5-b-wfsBN.snap index b5ca6970..c67568bc 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwU-dhP0.5-b-wfsBN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwU-dhP0.5-b-wfsBN.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwU-dhP0.5-b-wfsBU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwU-dhP0.5-b-wfsBU.snap index a69ac937..f3ed1273 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwU-dhP0.5-b-wfsBU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwU-dhP0.5-b-wfsBU.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwU-dhP0.5-b.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwU-dhP0.5-b.snap index d75d8d63..74344fa1 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwU-dhP0.5-b.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwU-dhP0.5-b.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwU-dhP0.5-wfsAN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwU-dhP0.5-wfsAN.snap index fc9ffcc1..385cc1f2 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwU-dhP0.5-wfsAN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwU-dhP0.5-wfsAN.snap @@ -12,4 +12,4 @@ size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen] size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwU-dhP0.5-wfsAU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwU-dhP0.5-wfsAU.snap index 94a08233..a7a95b9a 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwU-dhP0.5-wfsAU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwU-dhP0.5-wfsAU.snap @@ -8,5 +8,5 @@ initial configure: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen] post-map configures: -size: 1248 × 688, bounds: 1248 × 688, states: [] -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 336, bounds: 1248 × 688, states: [] +size: 1248 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwU-dhP0.5-wfsBN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwU-dhP0.5-wfsBN.snap index 9800a281..eefedd98 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwU-dhP0.5-wfsBN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwU-dhP0.5-wfsBN.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwU-dhP0.5-wfsBU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwU-dhP0.5-wfsBU.snap index 83276fc1..56890888 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwU-dhP0.5-wfsBU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwU-dhP0.5-wfsBU.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwU-dhP0.5.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwU-dhP0.5.snap index 568673d8..04a83128 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwU-dhP0.5.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@fsT-omT-dwU-dhP0.5.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dhF500-b-wfsAN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dhF500-b-wfsAN.snap index db56dd49..c0e8294e 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dhF500-b-wfsAN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dhF500-b-wfsAN.snap @@ -5,11 +5,11 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1240 × 680, bounds: 1240 × 680, states: [] +size: 1240 × 500, bounds: 1240 × 680, states: [] post-map configures: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen] size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dhF500-b-wfsAU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dhF500-b-wfsAU.snap index 95f2f1bb..00c74838 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dhF500-b-wfsAU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dhF500-b-wfsAU.snap @@ -5,8 +5,8 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1240 × 680, bounds: 1240 × 680, states: [] +size: 1240 × 500, bounds: 1240 × 680, states: [] post-map configures: -size: 1240 × 680, bounds: 1240 × 680, states: [] -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 500, bounds: 1240 × 680, states: [] +size: 1240 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dhF500-b-wfsBN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dhF500-b-wfsBN.snap index 751fa6ed..9962f8b7 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dhF500-b-wfsBN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dhF500-b-wfsBN.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dhF500-b-wfsBU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dhF500-b-wfsBU.snap index 3cab1c09..9081cb21 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dhF500-b-wfsBU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dhF500-b-wfsBU.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1240 × 680, bounds: 1240 × 680, states: [] +size: 1240 × 500, bounds: 1240 × 680, states: [] post-map configures: -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dhF500-b.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dhF500-b.snap index b48010ad..86e4141c 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dhF500-b.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dhF500-b.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1240 × 680, bounds: 1240 × 680, states: [] +size: 1240 × 500, bounds: 1240 × 680, states: [] post-map configures: -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dhF500-wfsAN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dhF500-wfsAN.snap index cfb7a116..b09745f3 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dhF500-wfsAN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dhF500-wfsAN.snap @@ -5,11 +5,11 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1248 × 688, bounds: 1248 × 688, states: [] +size: 1248 × 500, bounds: 1248 × 688, states: [] post-map configures: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen] size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dhF500-wfsAU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dhF500-wfsAU.snap index f6b5e91c..20099856 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dhF500-wfsAU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dhF500-wfsAU.snap @@ -5,8 +5,8 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1248 × 688, bounds: 1248 × 688, states: [] +size: 1248 × 500, bounds: 1248 × 688, states: [] post-map configures: -size: 1248 × 688, bounds: 1248 × 688, states: [] -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 500, bounds: 1248 × 688, states: [] +size: 1248 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dhF500-wfsBN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dhF500-wfsBN.snap index df6d71a8..6f84e43d 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dhF500-wfsBN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dhF500-wfsBN.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dhF500-wfsBU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dhF500-wfsBU.snap index c3cebf5f..af45c53b 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dhF500-wfsBU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dhF500-wfsBU.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1248 × 688, bounds: 1248 × 688, states: [] +size: 1248 × 500, bounds: 1248 × 688, states: [] post-map configures: -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dhF500.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dhF500.snap index 8a166c93..ab8218a7 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dhF500.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dhF500.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1248 × 688, bounds: 1248 × 688, states: [] +size: 1248 × 500, bounds: 1248 × 688, states: [] post-map configures: -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dhP0.5-b-wfsAN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dhP0.5-b-wfsAN.snap index f3395a1f..0f7cabb7 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dhP0.5-b-wfsAN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dhP0.5-b-wfsAN.snap @@ -5,11 +5,11 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1240 × 680, bounds: 1240 × 680, states: [] +size: 1240 × 328, bounds: 1240 × 680, states: [] post-map configures: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen] size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dhP0.5-b-wfsAU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dhP0.5-b-wfsAU.snap index 98fa6ee8..ed917a24 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dhP0.5-b-wfsAU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dhP0.5-b-wfsAU.snap @@ -5,8 +5,8 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1240 × 680, bounds: 1240 × 680, states: [] +size: 1240 × 328, bounds: 1240 × 680, states: [] post-map configures: -size: 1240 × 680, bounds: 1240 × 680, states: [] -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 328, bounds: 1240 × 680, states: [] +size: 1240 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dhP0.5-b-wfsBN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dhP0.5-b-wfsBN.snap index 0656eda4..49ccaa58 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dhP0.5-b-wfsBN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dhP0.5-b-wfsBN.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dhP0.5-b-wfsBU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dhP0.5-b-wfsBU.snap index 857a63ad..7c045afd 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dhP0.5-b-wfsBU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dhP0.5-b-wfsBU.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1240 × 680, bounds: 1240 × 680, states: [] +size: 1240 × 328, bounds: 1240 × 680, states: [] post-map configures: -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dhP0.5-b.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dhP0.5-b.snap index 8c0b3c1b..b81dd5d2 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dhP0.5-b.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dhP0.5-b.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1240 × 680, bounds: 1240 × 680, states: [] +size: 1240 × 328, bounds: 1240 × 680, states: [] post-map configures: -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dhP0.5-wfsAN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dhP0.5-wfsAN.snap index 4a5eb9ab..8bc0457f 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dhP0.5-wfsAN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dhP0.5-wfsAN.snap @@ -5,11 +5,11 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1248 × 688, bounds: 1248 × 688, states: [] +size: 1248 × 336, bounds: 1248 × 688, states: [] post-map configures: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen] size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dhP0.5-wfsAU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dhP0.5-wfsAU.snap index 82124328..4163a2cc 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dhP0.5-wfsAU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dhP0.5-wfsAU.snap @@ -5,8 +5,8 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1248 × 688, bounds: 1248 × 688, states: [] +size: 1248 × 336, bounds: 1248 × 688, states: [] post-map configures: -size: 1248 × 688, bounds: 1248 × 688, states: [] -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 336, bounds: 1248 × 688, states: [] +size: 1248 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dhP0.5-wfsBN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dhP0.5-wfsBN.snap index 4f3a706a..e48c99b8 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dhP0.5-wfsBN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dhP0.5-wfsBN.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dhP0.5-wfsBU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dhP0.5-wfsBU.snap index fc59889c..2d051f73 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dhP0.5-wfsBU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dhP0.5-wfsBU.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1248 × 688, bounds: 1248 × 688, states: [] +size: 1248 × 336, bounds: 1248 × 688, states: [] post-map configures: -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dhP0.5.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dhP0.5.snap index 25727b59..58545931 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dhP0.5.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dhP0.5.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1248 × 688, bounds: 1248 × 688, states: [] +size: 1248 × 336, bounds: 1248 × 688, states: [] post-map configures: -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwF1000-dhF500-b-wfsAN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwF1000-dhF500-b-wfsAN.snap index 9ab640f5..64389a82 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwF1000-dhF500-b-wfsAN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwF1000-dhF500-b-wfsAN.snap @@ -5,11 +5,11 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1240 × 680, bounds: 1240 × 680, states: [] +size: 1240 × 500, bounds: 1240 × 680, states: [] post-map configures: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen] size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwF1000-dhF500-b-wfsAU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwF1000-dhF500-b-wfsAU.snap index be1c92c9..212070b5 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwF1000-dhF500-b-wfsAU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwF1000-dhF500-b-wfsAU.snap @@ -5,8 +5,8 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1240 × 680, bounds: 1240 × 680, states: [] +size: 1240 × 500, bounds: 1240 × 680, states: [] post-map configures: -size: 1240 × 680, bounds: 1240 × 680, states: [] -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 500, bounds: 1240 × 680, states: [] +size: 1240 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwF1000-dhF500-b-wfsBN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwF1000-dhF500-b-wfsBN.snap index 35686323..2d6507e2 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwF1000-dhF500-b-wfsBN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwF1000-dhF500-b-wfsBN.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwF1000-dhF500-b-wfsBU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwF1000-dhF500-b-wfsBU.snap index 13911f70..07e39459 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwF1000-dhF500-b-wfsBU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwF1000-dhF500-b-wfsBU.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1240 × 680, bounds: 1240 × 680, states: [] +size: 1240 × 500, bounds: 1240 × 680, states: [] post-map configures: -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwF1000-dhF500-b.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwF1000-dhF500-b.snap index ac3fed64..6cafd97f 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwF1000-dhF500-b.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwF1000-dhF500-b.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1240 × 680, bounds: 1240 × 680, states: [] +size: 1240 × 500, bounds: 1240 × 680, states: [] post-map configures: -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwF1000-dhF500-wfsAN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwF1000-dhF500-wfsAN.snap index cb098ee5..0af583fd 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwF1000-dhF500-wfsAN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwF1000-dhF500-wfsAN.snap @@ -5,11 +5,11 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1248 × 688, bounds: 1248 × 688, states: [] +size: 1248 × 500, bounds: 1248 × 688, states: [] post-map configures: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen] size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwF1000-dhF500-wfsAU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwF1000-dhF500-wfsAU.snap index bd6e0e61..889ad1a8 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwF1000-dhF500-wfsAU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwF1000-dhF500-wfsAU.snap @@ -5,8 +5,8 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1248 × 688, bounds: 1248 × 688, states: [] +size: 1248 × 500, bounds: 1248 × 688, states: [] post-map configures: -size: 1248 × 688, bounds: 1248 × 688, states: [] -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 500, bounds: 1248 × 688, states: [] +size: 1248 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwF1000-dhF500-wfsBN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwF1000-dhF500-wfsBN.snap index 6891dd52..e6b4a0ee 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwF1000-dhF500-wfsBN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwF1000-dhF500-wfsBN.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwF1000-dhF500-wfsBU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwF1000-dhF500-wfsBU.snap index 4315c9fa..e45b3b08 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwF1000-dhF500-wfsBU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwF1000-dhF500-wfsBU.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1248 × 688, bounds: 1248 × 688, states: [] +size: 1248 × 500, bounds: 1248 × 688, states: [] post-map configures: -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwF1000-dhF500.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwF1000-dhF500.snap index 993933c6..c7e474b0 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwF1000-dhF500.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwF1000-dhF500.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1248 × 688, bounds: 1248 × 688, states: [] +size: 1248 × 500, bounds: 1248 × 688, states: [] post-map configures: -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwF1000-dhP0.5-b-wfsAN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwF1000-dhP0.5-b-wfsAN.snap index 985fdfdf..ca013814 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwF1000-dhP0.5-b-wfsAN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwF1000-dhP0.5-b-wfsAN.snap @@ -5,11 +5,11 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1240 × 680, bounds: 1240 × 680, states: [] +size: 1240 × 328, bounds: 1240 × 680, states: [] post-map configures: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen] size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwF1000-dhP0.5-b-wfsAU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwF1000-dhP0.5-b-wfsAU.snap index 6d545296..c50da386 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwF1000-dhP0.5-b-wfsAU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwF1000-dhP0.5-b-wfsAU.snap @@ -5,8 +5,8 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1240 × 680, bounds: 1240 × 680, states: [] +size: 1240 × 328, bounds: 1240 × 680, states: [] post-map configures: -size: 1240 × 680, bounds: 1240 × 680, states: [] -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 328, bounds: 1240 × 680, states: [] +size: 1240 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwF1000-dhP0.5-b-wfsBN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwF1000-dhP0.5-b-wfsBN.snap index 50720d37..5ddcc22d 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwF1000-dhP0.5-b-wfsBN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwF1000-dhP0.5-b-wfsBN.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwF1000-dhP0.5-b-wfsBU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwF1000-dhP0.5-b-wfsBU.snap index a5ac418e..51b5e24c 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwF1000-dhP0.5-b-wfsBU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwF1000-dhP0.5-b-wfsBU.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1240 × 680, bounds: 1240 × 680, states: [] +size: 1240 × 328, bounds: 1240 × 680, states: [] post-map configures: -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwF1000-dhP0.5-b.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwF1000-dhP0.5-b.snap index 2e8897ef..4bfe2c7a 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwF1000-dhP0.5-b.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwF1000-dhP0.5-b.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1240 × 680, bounds: 1240 × 680, states: [] +size: 1240 × 328, bounds: 1240 × 680, states: [] post-map configures: -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwF1000-dhP0.5-wfsAN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwF1000-dhP0.5-wfsAN.snap index 85bc0df9..ad62c23a 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwF1000-dhP0.5-wfsAN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwF1000-dhP0.5-wfsAN.snap @@ -5,11 +5,11 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1248 × 688, bounds: 1248 × 688, states: [] +size: 1248 × 336, bounds: 1248 × 688, states: [] post-map configures: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen] size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwF1000-dhP0.5-wfsAU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwF1000-dhP0.5-wfsAU.snap index 31da6251..d1866c24 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwF1000-dhP0.5-wfsAU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwF1000-dhP0.5-wfsAU.snap @@ -5,8 +5,8 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1248 × 688, bounds: 1248 × 688, states: [] +size: 1248 × 336, bounds: 1248 × 688, states: [] post-map configures: -size: 1248 × 688, bounds: 1248 × 688, states: [] -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 336, bounds: 1248 × 688, states: [] +size: 1248 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwF1000-dhP0.5-wfsBN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwF1000-dhP0.5-wfsBN.snap index 8cb323af..fe9ef1b6 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwF1000-dhP0.5-wfsBN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwF1000-dhP0.5-wfsBN.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwF1000-dhP0.5-wfsBU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwF1000-dhP0.5-wfsBU.snap index 4b1d94e6..e00f7654 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwF1000-dhP0.5-wfsBU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwF1000-dhP0.5-wfsBU.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1248 × 688, bounds: 1248 × 688, states: [] +size: 1248 × 336, bounds: 1248 × 688, states: [] post-map configures: -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwF1000-dhP0.5.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwF1000-dhP0.5.snap index b7f26ec8..a7b29c6a 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwF1000-dhP0.5.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwF1000-dhP0.5.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1248 × 688, bounds: 1248 × 688, states: [] +size: 1248 × 336, bounds: 1248 × 688, states: [] post-map configures: -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwP0.25-dhF500-b-wfsAN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwP0.25-dhF500-b-wfsAN.snap index b0cd7349..bb5fdbe1 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwP0.25-dhF500-b-wfsAN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwP0.25-dhF500-b-wfsAN.snap @@ -5,11 +5,11 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1240 × 680, bounds: 1240 × 680, states: [] +size: 1240 × 500, bounds: 1240 × 680, states: [] post-map configures: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen] size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwP0.25-dhF500-b-wfsAU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwP0.25-dhF500-b-wfsAU.snap index 98105b25..93f60647 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwP0.25-dhF500-b-wfsAU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwP0.25-dhF500-b-wfsAU.snap @@ -5,8 +5,8 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1240 × 680, bounds: 1240 × 680, states: [] +size: 1240 × 500, bounds: 1240 × 680, states: [] post-map configures: -size: 1240 × 680, bounds: 1240 × 680, states: [] -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 500, bounds: 1240 × 680, states: [] +size: 1240 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwP0.25-dhF500-b-wfsBN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwP0.25-dhF500-b-wfsBN.snap index 71267910..7a8a6f99 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwP0.25-dhF500-b-wfsBN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwP0.25-dhF500-b-wfsBN.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwP0.25-dhF500-b-wfsBU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwP0.25-dhF500-b-wfsBU.snap index f85d64fb..bed32f95 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwP0.25-dhF500-b-wfsBU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwP0.25-dhF500-b-wfsBU.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1240 × 680, bounds: 1240 × 680, states: [] +size: 1240 × 500, bounds: 1240 × 680, states: [] post-map configures: -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwP0.25-dhF500-b.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwP0.25-dhF500-b.snap index d2d52eb7..5f304b8a 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwP0.25-dhF500-b.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwP0.25-dhF500-b.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1240 × 680, bounds: 1240 × 680, states: [] +size: 1240 × 500, bounds: 1240 × 680, states: [] post-map configures: -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwP0.25-dhF500-wfsAN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwP0.25-dhF500-wfsAN.snap index f2e73805..412bef53 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwP0.25-dhF500-wfsAN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwP0.25-dhF500-wfsAN.snap @@ -5,11 +5,11 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1248 × 688, bounds: 1248 × 688, states: [] +size: 1248 × 500, bounds: 1248 × 688, states: [] post-map configures: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen] size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwP0.25-dhF500-wfsAU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwP0.25-dhF500-wfsAU.snap index 84268a80..e1c0bad5 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwP0.25-dhF500-wfsAU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwP0.25-dhF500-wfsAU.snap @@ -5,8 +5,8 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1248 × 688, bounds: 1248 × 688, states: [] +size: 1248 × 500, bounds: 1248 × 688, states: [] post-map configures: -size: 1248 × 688, bounds: 1248 × 688, states: [] -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 500, bounds: 1248 × 688, states: [] +size: 1248 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwP0.25-dhF500-wfsBN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwP0.25-dhF500-wfsBN.snap index 6b6ab692..4832afde 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwP0.25-dhF500-wfsBN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwP0.25-dhF500-wfsBN.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwP0.25-dhF500-wfsBU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwP0.25-dhF500-wfsBU.snap index 0696e775..18b269d3 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwP0.25-dhF500-wfsBU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwP0.25-dhF500-wfsBU.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1248 × 688, bounds: 1248 × 688, states: [] +size: 1248 × 500, bounds: 1248 × 688, states: [] post-map configures: -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwP0.25-dhF500.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwP0.25-dhF500.snap index faad0968..a26487b9 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwP0.25-dhF500.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwP0.25-dhF500.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1248 × 688, bounds: 1248 × 688, states: [] +size: 1248 × 500, bounds: 1248 × 688, states: [] post-map configures: -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwP0.25-dhP0.5-b-wfsAN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwP0.25-dhP0.5-b-wfsAN.snap index 988eae8e..956f9d47 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwP0.25-dhP0.5-b-wfsAN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwP0.25-dhP0.5-b-wfsAN.snap @@ -5,11 +5,11 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1240 × 680, bounds: 1240 × 680, states: [] +size: 1240 × 328, bounds: 1240 × 680, states: [] post-map configures: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen] size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwP0.25-dhP0.5-b-wfsAU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwP0.25-dhP0.5-b-wfsAU.snap index 1f273739..02f1954a 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwP0.25-dhP0.5-b-wfsAU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwP0.25-dhP0.5-b-wfsAU.snap @@ -5,8 +5,8 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1240 × 680, bounds: 1240 × 680, states: [] +size: 1240 × 328, bounds: 1240 × 680, states: [] post-map configures: -size: 1240 × 680, bounds: 1240 × 680, states: [] -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 328, bounds: 1240 × 680, states: [] +size: 1240 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwP0.25-dhP0.5-b-wfsBN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwP0.25-dhP0.5-b-wfsBN.snap index 002ecc07..dee990dd 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwP0.25-dhP0.5-b-wfsBN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwP0.25-dhP0.5-b-wfsBN.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwP0.25-dhP0.5-b-wfsBU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwP0.25-dhP0.5-b-wfsBU.snap index 98475a64..1c8f5111 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwP0.25-dhP0.5-b-wfsBU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwP0.25-dhP0.5-b-wfsBU.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1240 × 680, bounds: 1240 × 680, states: [] +size: 1240 × 328, bounds: 1240 × 680, states: [] post-map configures: -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwP0.25-dhP0.5-b.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwP0.25-dhP0.5-b.snap index ea43b72c..8c84c6de 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwP0.25-dhP0.5-b.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwP0.25-dhP0.5-b.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1240 × 680, bounds: 1240 × 680, states: [] +size: 1240 × 328, bounds: 1240 × 680, states: [] post-map configures: -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwP0.25-dhP0.5-wfsAN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwP0.25-dhP0.5-wfsAN.snap index edac1603..86609680 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwP0.25-dhP0.5-wfsAN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwP0.25-dhP0.5-wfsAN.snap @@ -5,11 +5,11 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1248 × 688, bounds: 1248 × 688, states: [] +size: 1248 × 336, bounds: 1248 × 688, states: [] post-map configures: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen] size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwP0.25-dhP0.5-wfsAU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwP0.25-dhP0.5-wfsAU.snap index 48140f3f..c14e252c 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwP0.25-dhP0.5-wfsAU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwP0.25-dhP0.5-wfsAU.snap @@ -5,8 +5,8 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1248 × 688, bounds: 1248 × 688, states: [] +size: 1248 × 336, bounds: 1248 × 688, states: [] post-map configures: -size: 1248 × 688, bounds: 1248 × 688, states: [] -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 336, bounds: 1248 × 688, states: [] +size: 1248 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwP0.25-dhP0.5-wfsBN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwP0.25-dhP0.5-wfsBN.snap index b31d4a74..3d129d2a 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwP0.25-dhP0.5-wfsBN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwP0.25-dhP0.5-wfsBN.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwP0.25-dhP0.5-wfsBU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwP0.25-dhP0.5-wfsBU.snap index bbc7ce37..70f8bd84 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwP0.25-dhP0.5-wfsBU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwP0.25-dhP0.5-wfsBU.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1248 × 688, bounds: 1248 × 688, states: [] +size: 1248 × 336, bounds: 1248 × 688, states: [] post-map configures: -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwP0.25-dhP0.5.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwP0.25-dhP0.5.snap index 494c9ae4..3a83608f 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwP0.25-dhP0.5.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwP0.25-dhP0.5.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1248 × 688, bounds: 1248 × 688, states: [] +size: 1248 × 336, bounds: 1248 × 688, states: [] post-map configures: -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwU-dhF500-b-wfsAN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwU-dhF500-b-wfsAN.snap index b03716b4..01ebd5d3 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwU-dhF500-b-wfsAN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwU-dhF500-b-wfsAN.snap @@ -5,11 +5,11 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1240 × 680, bounds: 1240 × 680, states: [] +size: 1240 × 500, bounds: 1240 × 680, states: [] post-map configures: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen] size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwU-dhF500-b-wfsAU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwU-dhF500-b-wfsAU.snap index 0c132a67..3588dda0 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwU-dhF500-b-wfsAU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwU-dhF500-b-wfsAU.snap @@ -5,8 +5,8 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1240 × 680, bounds: 1240 × 680, states: [] +size: 1240 × 500, bounds: 1240 × 680, states: [] post-map configures: -size: 1240 × 680, bounds: 1240 × 680, states: [] -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 500, bounds: 1240 × 680, states: [] +size: 1240 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwU-dhF500-b-wfsBN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwU-dhF500-b-wfsBN.snap index 160cb5b8..9c210bdd 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwU-dhF500-b-wfsBN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwU-dhF500-b-wfsBN.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwU-dhF500-b-wfsBU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwU-dhF500-b-wfsBU.snap index 9d8180fb..e32640be 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwU-dhF500-b-wfsBU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwU-dhF500-b-wfsBU.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1240 × 680, bounds: 1240 × 680, states: [] +size: 1240 × 500, bounds: 1240 × 680, states: [] post-map configures: -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwU-dhF500-b.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwU-dhF500-b.snap index 196bcc1e..4e5c6743 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwU-dhF500-b.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwU-dhF500-b.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1240 × 680, bounds: 1240 × 680, states: [] +size: 1240 × 500, bounds: 1240 × 680, states: [] post-map configures: -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 500, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwU-dhF500-wfsAN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwU-dhF500-wfsAN.snap index 01e8b567..f5da2622 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwU-dhF500-wfsAN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwU-dhF500-wfsAN.snap @@ -5,11 +5,11 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1248 × 688, bounds: 1248 × 688, states: [] +size: 1248 × 500, bounds: 1248 × 688, states: [] post-map configures: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen] size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwU-dhF500-wfsAU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwU-dhF500-wfsAU.snap index 23719b08..8201fd74 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwU-dhF500-wfsAU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwU-dhF500-wfsAU.snap @@ -5,8 +5,8 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1248 × 688, bounds: 1248 × 688, states: [] +size: 1248 × 500, bounds: 1248 × 688, states: [] post-map configures: -size: 1248 × 688, bounds: 1248 × 688, states: [] -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 500, bounds: 1248 × 688, states: [] +size: 1248 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwU-dhF500-wfsBN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwU-dhF500-wfsBN.snap index b76e18d4..6f4c4e8f 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwU-dhF500-wfsBN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwU-dhF500-wfsBN.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwU-dhF500-wfsBU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwU-dhF500-wfsBU.snap index f4e56b22..091228df 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwU-dhF500-wfsBU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwU-dhF500-wfsBU.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1248 × 688, bounds: 1248 × 688, states: [] +size: 1248 × 500, bounds: 1248 × 688, states: [] post-map configures: -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwU-dhF500.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwU-dhF500.snap index fb9769fd..79e33558 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwU-dhF500.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwU-dhF500.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1248 × 688, bounds: 1248 × 688, states: [] +size: 1248 × 500, bounds: 1248 × 688, states: [] post-map configures: -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 500, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwU-dhP0.5-b-wfsAN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwU-dhP0.5-b-wfsAN.snap index 4d8b1ca5..9dc145ec 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwU-dhP0.5-b-wfsAN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwU-dhP0.5-b-wfsAN.snap @@ -5,11 +5,11 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1240 × 680, bounds: 1240 × 680, states: [] +size: 1240 × 328, bounds: 1240 × 680, states: [] post-map configures: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen] size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwU-dhP0.5-b-wfsAU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwU-dhP0.5-b-wfsAU.snap index 098ee395..1dcfc642 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwU-dhP0.5-b-wfsAU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwU-dhP0.5-b-wfsAU.snap @@ -5,8 +5,8 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1240 × 680, bounds: 1240 × 680, states: [] +size: 1240 × 328, bounds: 1240 × 680, states: [] post-map configures: -size: 1240 × 680, bounds: 1240 × 680, states: [] -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 328, bounds: 1240 × 680, states: [] +size: 1240 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwU-dhP0.5-b-wfsBN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwU-dhP0.5-b-wfsBN.snap index b4d9eb1e..efb41fc9 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwU-dhP0.5-b-wfsBN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwU-dhP0.5-b-wfsBN.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated] unfullscreen configure: -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwU-dhP0.5-b-wfsBU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwU-dhP0.5-b-wfsBU.snap index 261875db..3f1636e7 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwU-dhP0.5-b-wfsBU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwU-dhP0.5-b-wfsBU.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1240 × 680, bounds: 1240 × 680, states: [] +size: 1240 × 328, bounds: 1240 × 680, states: [] post-map configures: -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwU-dhP0.5-b.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwU-dhP0.5-b.snap index 8518a7d3..65162093 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwU-dhP0.5-b.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwU-dhP0.5-b.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1240 × 680, bounds: 1240 × 680, states: [] +size: 1240 × 328, bounds: 1240 × 680, states: [] post-map configures: -size: 1240 × 680, bounds: 1240 × 680, states: [Activated] +size: 1240 × 328, bounds: 1240 × 680, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwU-dhP0.5-wfsAN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwU-dhP0.5-wfsAN.snap index 27556334..447491cf 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwU-dhP0.5-wfsAN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwU-dhP0.5-wfsAN.snap @@ -5,11 +5,11 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1248 × 688, bounds: 1248 × 688, states: [] +size: 1248 × 336, bounds: 1248 × 688, states: [] post-map configures: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen] size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwU-dhP0.5-wfsAU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwU-dhP0.5-wfsAU.snap index 9fd59d1b..abfe5d9c 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwU-dhP0.5-wfsAU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwU-dhP0.5-wfsAU.snap @@ -5,8 +5,8 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1248 × 688, bounds: 1248 × 688, states: [] +size: 1248 × 336, bounds: 1248 × 688, states: [] post-map configures: -size: 1248 × 688, bounds: 1248 × 688, states: [] -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 336, bounds: 1248 × 688, states: [] +size: 1248 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwU-dhP0.5-wfsBN.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwU-dhP0.5-wfsBN.snap index 7aa223ce..f7e1eada 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwU-dhP0.5-wfsBN.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwU-dhP0.5-wfsBN.snap @@ -11,4 +11,4 @@ post-map configures: size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated] unfullscreen configure: -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwU-dhP0.5-wfsBU.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwU-dhP0.5-wfsBU.snap index 3407f0a4..110b1129 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwU-dhP0.5-wfsBU.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwU-dhP0.5-wfsBU.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1248 × 688, bounds: 1248 × 688, states: [] +size: 1248 × 336, bounds: 1248 × 688, states: [] post-map configures: -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 336, bounds: 1248 × 688, states: [Activated] diff --git a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwU-dhP0.5.snap b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwU-dhP0.5.snap index 21c8df33..b98d1c6c 100644 --- a/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwU-dhP0.5.snap +++ b/src/tests/snapshots/niri__tests__window_opening__check_target_size@omT-dwU-dhP0.5.snap @@ -5,7 +5,7 @@ expression: snapshot snapshot_kind: text --- initial configure: -size: 1248 × 688, bounds: 1248 × 688, states: [] +size: 1248 × 336, bounds: 1248 × 688, states: [] post-map configures: -size: 1248 × 688, bounds: 1248 × 688, states: [Activated] +size: 1248 × 336, bounds: 1248 × 688, states: [Activated] 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. diff --git a/wiki/Configuration:-Window-Rules.md b/wiki/Configuration:-Window-Rules.md index 8dc7c4be..6fd5e2a8 100644 --- a/wiki/Configuration:-Window-Rules.md +++ b/wiki/Configuration:-Window-Rules.md @@ -244,6 +244,8 @@ To be precise, they apply at the point when niri sends the initial configure req Set the default width for the new window. +This works for floating windows too, despite the word "column" in the name. + ```kdl // Give Blender and GIMP some guaranteed width on opening. window-rule { @@ -261,14 +263,16 @@ window-rule { Since: next release -Set the default height for the new window if it opens as floating. +Set the default height for the new window. ```kdl -// Make Alacritty take 50% of the screen height on opening. +// Open the Firefox picture-in-picture window as floating with 480×270 size. window-rule { - match app-id="^Alacritty$" + match app-id="firefox$" title="^Picture-in-Picture$" - default-window-height { proportion 0.5; } + open-floating true + default-column-width { fixed 480; } + default-window-height { fixed 270; } } ```