mirror of
https://github.com/niri-wm/niri.git
synced 2026-06-23 02:05:33 +07:00
Implement default-window-height for scrolling windows
This commit is contained in:
@@ -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(),
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -839,16 +839,23 @@ impl<W: LayoutElement> Layout<W> {
|
||||
/// 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<W>,
|
||||
width: Option<ColumnWidth>,
|
||||
height: Option<PresetSize>,
|
||||
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<W: LayoutElement> Layout<W> {
|
||||
*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<W: LayoutElement> Layout<W> {
|
||||
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(),
|
||||
|
||||
+19
-2
@@ -399,6 +399,7 @@ impl<W: LayoutElement> ScrollingSpace<W> {
|
||||
pub fn new_window_size(
|
||||
&self,
|
||||
width: Option<ColumnWidth>,
|
||||
height: Option<PresetSize>,
|
||||
rules: &ResolvedWindowRules,
|
||||
) -> Size<i32, Logical> {
|
||||
let border = rules.border.resolve_against(self.options.border);
|
||||
@@ -417,11 +418,27 @@ impl<W: LayoutElement> ScrollingSpace<W> {
|
||||
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)))
|
||||
}
|
||||
|
||||
|
||||
@@ -740,7 +740,7 @@ impl<W: LayoutElement> Workspace<W> {
|
||||
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
|
||||
|
||||
+2
-2
@@ -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]
|
||||
|
||||
+3
-3
@@ -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]
|
||||
|
||||
+1
-1
@@ -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]
|
||||
|
||||
+2
-2
@@ -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]
|
||||
|
||||
@@ -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]
|
||||
|
||||
+2
-2
@@ -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]
|
||||
|
||||
+3
-3
@@ -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]
|
||||
|
||||
+1
-1
@@ -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]
|
||||
|
||||
+2
-2
@@ -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]
|
||||
|
||||
@@ -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]
|
||||
|
||||
+2
-2
@@ -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]
|
||||
|
||||
+3
-3
@@ -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]
|
||||
|
||||
+1
-1
@@ -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]
|
||||
|
||||
+2
-2
@@ -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]
|
||||
|
||||
@@ -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]
|
||||
|
||||
+2
-2
@@ -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]
|
||||
|
||||
+3
-3
@@ -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]
|
||||
|
||||
+1
-1
@@ -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]
|
||||
|
||||
+2
-2
@@ -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]
|
||||
|
||||
@@ -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]
|
||||
|
||||
+2
-2
@@ -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]
|
||||
|
||||
+3
-3
@@ -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]
|
||||
|
||||
+1
-1
@@ -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]
|
||||
|
||||
+2
-2
@@ -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]
|
||||
|
||||
+2
-2
@@ -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]
|
||||
|
||||
+2
-2
@@ -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]
|
||||
|
||||
+3
-3
@@ -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]
|
||||
|
||||
+1
-1
@@ -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]
|
||||
|
||||
+2
-2
@@ -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]
|
||||
|
||||
+2
-2
@@ -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]
|
||||
|
||||
+2
-2
@@ -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]
|
||||
|
||||
+3
-3
@@ -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]
|
||||
|
||||
+1
-1
@@ -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]
|
||||
|
||||
+2
-2
@@ -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]
|
||||
|
||||
+2
-2
@@ -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]
|
||||
|
||||
+2
-2
@@ -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]
|
||||
|
||||
+3
-3
@@ -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]
|
||||
|
||||
+1
-1
@@ -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]
|
||||
|
||||
+2
-2
@@ -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]
|
||||
|
||||
+2
-2
@@ -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]
|
||||
|
||||
+2
-2
@@ -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]
|
||||
|
||||
+3
-3
@@ -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]
|
||||
|
||||
+1
-1
@@ -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]
|
||||
|
||||
+2
-2
@@ -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]
|
||||
|
||||
+2
-2
@@ -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]
|
||||
|
||||
+2
-2
@@ -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]
|
||||
|
||||
+3
-3
@@ -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]
|
||||
|
||||
+1
-1
@@ -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]
|
||||
|
||||
+2
-2
@@ -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]
|
||||
|
||||
+2
-2
@@ -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]
|
||||
|
||||
+2
-2
@@ -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]
|
||||
|
||||
+3
-3
@@ -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]
|
||||
|
||||
+1
-1
@@ -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]
|
||||
|
||||
+2
-2
@@ -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]
|
||||
|
||||
+2
-2
@@ -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]
|
||||
|
||||
+2
-2
@@ -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]
|
||||
|
||||
+3
-3
@@ -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]
|
||||
|
||||
+1
-1
@@ -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]
|
||||
|
||||
+2
-2
@@ -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]
|
||||
|
||||
+2
-2
@@ -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]
|
||||
|
||||
+2
-2
@@ -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]
|
||||
|
||||
+3
-3
@@ -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]
|
||||
|
||||
+1
-1
@@ -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]
|
||||
|
||||
+2
-2
@@ -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]
|
||||
|
||||
+2
-2
@@ -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]
|
||||
|
||||
+2
-2
@@ -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]
|
||||
|
||||
+3
-3
@@ -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]
|
||||
|
||||
+1
-1
@@ -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]
|
||||
|
||||
+2
-2
@@ -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]
|
||||
|
||||
@@ -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]
|
||||
|
||||
+2
-2
@@ -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]
|
||||
|
||||
+3
-3
@@ -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]
|
||||
|
||||
+1
-1
@@ -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]
|
||||
|
||||
+2
-2
@@ -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]
|
||||
|
||||
+2
-2
@@ -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]
|
||||
|
||||
+2
-2
@@ -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]
|
||||
|
||||
+3
-3
@@ -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]
|
||||
|
||||
+1
-1
@@ -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]
|
||||
|
||||
+2
-2
@@ -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]
|
||||
|
||||
@@ -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]
|
||||
|
||||
+2
-2
@@ -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]
|
||||
|
||||
+3
-3
@@ -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]
|
||||
|
||||
+2
-2
@@ -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]
|
||||
|
||||
+2
-2
@@ -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]
|
||||
|
||||
+2
-2
@@ -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]
|
||||
|
||||
+2
-2
@@ -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]
|
||||
|
||||
+3
-3
@@ -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]
|
||||
|
||||
+2
-2
@@ -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]
|
||||
|
||||
+2
-2
@@ -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]
|
||||
|
||||
@@ -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]
|
||||
|
||||
+2
-2
@@ -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]
|
||||
|
||||
+3
-3
@@ -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]
|
||||
|
||||
+2
-2
@@ -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]
|
||||
|
||||
+2
-2
@@ -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]
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user