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(),
|
window.clone(),
|
||||||
AddWindowTarget::Auto,
|
AddWindowTarget::Auto,
|
||||||
width,
|
width,
|
||||||
|
None,
|
||||||
false,
|
false,
|
||||||
false,
|
false,
|
||||||
ActivateWindow::default(),
|
ActivateWindow::default(),
|
||||||
@@ -199,6 +200,7 @@ impl Layout {
|
|||||||
window.clone(),
|
window.clone(),
|
||||||
AddWindowTarget::NextTo(right_of.id()),
|
AddWindowTarget::NextTo(right_of.id()),
|
||||||
width,
|
width,
|
||||||
|
None,
|
||||||
false,
|
false,
|
||||||
false,
|
false,
|
||||||
ActivateWindow::default(),
|
ActivateWindow::default(),
|
||||||
|
|||||||
@@ -97,10 +97,11 @@ impl CompositorHandler for State {
|
|||||||
|
|
||||||
let toplevel = window.toplevel().expect("no X11 support");
|
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 {
|
if let InitialConfigureState::Configured {
|
||||||
rules,
|
rules,
|
||||||
width,
|
width,
|
||||||
|
height,
|
||||||
floating_width: _,
|
floating_width: _,
|
||||||
floating_height: _,
|
floating_height: _,
|
||||||
is_full_width,
|
is_full_width,
|
||||||
@@ -118,10 +119,10 @@ impl CompositorHandler for State {
|
|||||||
.and_then(|n| self.niri.layout.find_workspace_by_name(n))
|
.and_then(|n| self.niri.layout.find_workspace_by_name(n))
|
||||||
.map(|(_, ws)| ws.id());
|
.map(|(_, ws)| ws.id());
|
||||||
|
|
||||||
(rules, width, is_full_width, output, workspace_id)
|
(rules, width, height, is_full_width, output, workspace_id)
|
||||||
} else {
|
} else {
|
||||||
error!("window map must happen after initial configure");
|
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
|
// The GTK about dialog sets min/max size after the initial configure but
|
||||||
@@ -189,6 +190,7 @@ impl CompositorHandler for State {
|
|||||||
mapped,
|
mapped,
|
||||||
target,
|
target,
|
||||||
width,
|
width,
|
||||||
|
height,
|
||||||
is_full_width,
|
is_full_width,
|
||||||
is_floating,
|
is_floating,
|
||||||
activate,
|
activate,
|
||||||
|
|||||||
@@ -505,6 +505,7 @@ impl XdgShellHandler for State {
|
|||||||
InitialConfigureState::Configured {
|
InitialConfigureState::Configured {
|
||||||
rules,
|
rules,
|
||||||
width,
|
width,
|
||||||
|
height,
|
||||||
floating_width,
|
floating_width,
|
||||||
floating_height,
|
floating_height,
|
||||||
is_full_width,
|
is_full_width,
|
||||||
@@ -569,7 +570,11 @@ impl XdgShellHandler for State {
|
|||||||
} else {
|
} else {
|
||||||
*width
|
*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(
|
ws.configure_new_window(
|
||||||
&unmapped.window,
|
&unmapped.window,
|
||||||
configure_width,
|
configure_width,
|
||||||
@@ -854,6 +859,7 @@ impl State {
|
|||||||
|
|
||||||
let mut width = None;
|
let mut width = None;
|
||||||
let mut floating_width = None;
|
let mut floating_width = None;
|
||||||
|
let mut height = None;
|
||||||
let mut floating_height = None;
|
let mut floating_height = None;
|
||||||
let is_full_width = rules.open_maximized.unwrap_or(false);
|
let is_full_width = rules.open_maximized.unwrap_or(false);
|
||||||
let is_floating = rules.compute_open_floating(toplevel);
|
let is_floating = rules.compute_open_floating(toplevel);
|
||||||
@@ -880,6 +886,7 @@ impl State {
|
|||||||
|
|
||||||
width = ws.resolve_default_width(rules.default_width, false);
|
width = ws.resolve_default_width(rules.default_width, false);
|
||||||
floating_width = ws.resolve_default_width(rules.default_width, true);
|
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);
|
floating_height = ws.resolve_default_height(rules.default_height, true);
|
||||||
|
|
||||||
let configure_width = if is_floating {
|
let configure_width = if is_floating {
|
||||||
@@ -889,7 +896,7 @@ impl State {
|
|||||||
} else {
|
} else {
|
||||||
width
|
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(
|
ws.configure_new_window(
|
||||||
window,
|
window,
|
||||||
configure_width,
|
configure_width,
|
||||||
@@ -914,6 +921,7 @@ impl State {
|
|||||||
*state = InitialConfigureState::Configured {
|
*state = InitialConfigureState::Configured {
|
||||||
rules,
|
rules,
|
||||||
width,
|
width,
|
||||||
|
height,
|
||||||
floating_width,
|
floating_width,
|
||||||
floating_height,
|
floating_height,
|
||||||
is_full_width,
|
is_full_width,
|
||||||
|
|||||||
@@ -839,16 +839,23 @@ impl<W: LayoutElement> Layout<W> {
|
|||||||
/// Adds a new window to the layout.
|
/// Adds a new window to the layout.
|
||||||
///
|
///
|
||||||
/// Returns an output that the window was added to, if there were any outputs.
|
/// Returns an output that the window was added to, if there were any outputs.
|
||||||
|
#[allow(clippy::too_many_arguments)]
|
||||||
pub fn add_window(
|
pub fn add_window(
|
||||||
&mut self,
|
&mut self,
|
||||||
window: W,
|
window: W,
|
||||||
target: AddWindowTarget<W>,
|
target: AddWindowTarget<W>,
|
||||||
width: Option<ColumnWidth>,
|
width: Option<ColumnWidth>,
|
||||||
|
height: Option<PresetSize>,
|
||||||
is_full_width: bool,
|
is_full_width: bool,
|
||||||
is_floating: bool,
|
is_floating: bool,
|
||||||
activate: ActivateWindow,
|
activate: ActivateWindow,
|
||||||
) -> Option<&Output> {
|
) -> Option<&Output> {
|
||||||
let resolved_width = self.resolve_default_width(&window, width, is_floating);
|
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 {
|
match &mut self.monitor_set {
|
||||||
MonitorSet::Normal {
|
MonitorSet::Normal {
|
||||||
@@ -927,6 +934,18 @@ impl<W: LayoutElement> Layout<W> {
|
|||||||
*active_monitor_idx = mon_idx;
|
*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)
|
Some(&mon.output)
|
||||||
}
|
}
|
||||||
MonitorSet::NoOutputs { workspaces } => {
|
MonitorSet::NoOutputs { workspaces } => {
|
||||||
@@ -983,6 +1002,13 @@ impl<W: LayoutElement> Layout<W> {
|
|||||||
is_floating,
|
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
|
None
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -4693,6 +4719,7 @@ mod tests {
|
|||||||
win,
|
win,
|
||||||
AddWindowTarget::Auto,
|
AddWindowTarget::Auto,
|
||||||
None,
|
None,
|
||||||
|
None,
|
||||||
false,
|
false,
|
||||||
params.is_floating,
|
params.is_floating,
|
||||||
ActivateWindow::default(),
|
ActivateWindow::default(),
|
||||||
@@ -4760,6 +4787,7 @@ mod tests {
|
|||||||
win,
|
win,
|
||||||
AddWindowTarget::NextTo(&next_to_id),
|
AddWindowTarget::NextTo(&next_to_id),
|
||||||
None,
|
None,
|
||||||
|
None,
|
||||||
false,
|
false,
|
||||||
params.is_floating,
|
params.is_floating,
|
||||||
ActivateWindow::default(),
|
ActivateWindow::default(),
|
||||||
@@ -4832,6 +4860,7 @@ mod tests {
|
|||||||
win,
|
win,
|
||||||
AddWindowTarget::Workspace(ws_id),
|
AddWindowTarget::Workspace(ws_id),
|
||||||
None,
|
None,
|
||||||
|
None,
|
||||||
false,
|
false,
|
||||||
params.is_floating,
|
params.is_floating,
|
||||||
ActivateWindow::default(),
|
ActivateWindow::default(),
|
||||||
|
|||||||
+19
-2
@@ -399,6 +399,7 @@ impl<W: LayoutElement> ScrollingSpace<W> {
|
|||||||
pub fn new_window_size(
|
pub fn new_window_size(
|
||||||
&self,
|
&self,
|
||||||
width: Option<ColumnWidth>,
|
width: Option<ColumnWidth>,
|
||||||
|
height: Option<PresetSize>,
|
||||||
rules: &ResolvedWindowRules,
|
rules: &ResolvedWindowRules,
|
||||||
) -> Size<i32, Logical> {
|
) -> Size<i32, Logical> {
|
||||||
let border = rules.border.resolve_against(self.options.border);
|
let border = rules.border.resolve_against(self.options.border);
|
||||||
@@ -417,11 +418,27 @@ impl<W: LayoutElement> ScrollingSpace<W> {
|
|||||||
0
|
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 {
|
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)))
|
Size::from((width, max(height.floor() as i32, 1)))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -740,7 +740,7 @@ impl<W: LayoutElement> Workspace<W> {
|
|||||||
let mut size = if is_floating {
|
let mut size = if is_floating {
|
||||||
self.floating.new_window_size(width, height, rules)
|
self.floating.new_window_size(width, height, rules)
|
||||||
} else {
|
} 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
|
// 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
|
snapshot_kind: text
|
||||||
---
|
---
|
||||||
initial configure:
|
initial configure:
|
||||||
size: 608 × 680, bounds: 1240 × 680, states: []
|
size: 608 × 500, bounds: 1240 × 680, states: []
|
||||||
|
|
||||||
post-map configures:
|
post-map configures:
|
||||||
size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen]
|
size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen]
|
||||||
size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated]
|
size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated]
|
||||||
|
|
||||||
unfullscreen configure:
|
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
|
snapshot_kind: text
|
||||||
---
|
---
|
||||||
initial configure:
|
initial configure:
|
||||||
size: 608 × 680, bounds: 1240 × 680, states: []
|
size: 608 × 500, bounds: 1240 × 680, states: []
|
||||||
|
|
||||||
post-map configures:
|
post-map configures:
|
||||||
size: 608 × 680, bounds: 1240 × 680, states: []
|
size: 608 × 500, bounds: 1240 × 680, states: []
|
||||||
size: 608 × 680, bounds: 1240 × 680, states: [Activated]
|
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]
|
size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated]
|
||||||
|
|
||||||
unfullscreen configure:
|
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
|
snapshot_kind: text
|
||||||
---
|
---
|
||||||
initial configure:
|
initial configure:
|
||||||
size: 608 × 680, bounds: 1240 × 680, states: []
|
size: 608 × 500, bounds: 1240 × 680, states: []
|
||||||
|
|
||||||
post-map configures:
|
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
|
snapshot_kind: text
|
||||||
---
|
---
|
||||||
initial configure:
|
initial configure:
|
||||||
size: 608 × 680, bounds: 1240 × 680, states: []
|
size: 608 × 500, bounds: 1240 × 680, states: []
|
||||||
|
|
||||||
post-map configures:
|
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
|
snapshot_kind: text
|
||||||
---
|
---
|
||||||
initial configure:
|
initial configure:
|
||||||
size: 616 × 688, bounds: 1248 × 688, states: []
|
size: 616 × 500, bounds: 1248 × 688, states: []
|
||||||
|
|
||||||
post-map configures:
|
post-map configures:
|
||||||
size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen]
|
size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen]
|
||||||
size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated]
|
size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated]
|
||||||
|
|
||||||
unfullscreen configure:
|
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
|
snapshot_kind: text
|
||||||
---
|
---
|
||||||
initial configure:
|
initial configure:
|
||||||
size: 616 × 688, bounds: 1248 × 688, states: []
|
size: 616 × 500, bounds: 1248 × 688, states: []
|
||||||
|
|
||||||
post-map configures:
|
post-map configures:
|
||||||
size: 616 × 688, bounds: 1248 × 688, states: []
|
size: 616 × 500, bounds: 1248 × 688, states: []
|
||||||
size: 616 × 688, bounds: 1248 × 688, states: [Activated]
|
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]
|
size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated]
|
||||||
|
|
||||||
unfullscreen configure:
|
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
|
snapshot_kind: text
|
||||||
---
|
---
|
||||||
initial configure:
|
initial configure:
|
||||||
size: 616 × 688, bounds: 1248 × 688, states: []
|
size: 616 × 500, bounds: 1248 × 688, states: []
|
||||||
|
|
||||||
post-map configures:
|
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
|
snapshot_kind: text
|
||||||
---
|
---
|
||||||
initial configure:
|
initial configure:
|
||||||
size: 616 × 688, bounds: 1248 × 688, states: []
|
size: 616 × 500, bounds: 1248 × 688, states: []
|
||||||
|
|
||||||
post-map configures:
|
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
|
snapshot_kind: text
|
||||||
---
|
---
|
||||||
initial configure:
|
initial configure:
|
||||||
size: 608 × 680, bounds: 1240 × 680, states: []
|
size: 608 × 328, bounds: 1240 × 680, states: []
|
||||||
|
|
||||||
post-map configures:
|
post-map configures:
|
||||||
size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen]
|
size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen]
|
||||||
size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated]
|
size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated]
|
||||||
|
|
||||||
unfullscreen configure:
|
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
|
snapshot_kind: text
|
||||||
---
|
---
|
||||||
initial configure:
|
initial configure:
|
||||||
size: 608 × 680, bounds: 1240 × 680, states: []
|
size: 608 × 328, bounds: 1240 × 680, states: []
|
||||||
|
|
||||||
post-map configures:
|
post-map configures:
|
||||||
size: 608 × 680, bounds: 1240 × 680, states: []
|
size: 608 × 328, bounds: 1240 × 680, states: []
|
||||||
size: 608 × 680, bounds: 1240 × 680, states: [Activated]
|
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]
|
size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated]
|
||||||
|
|
||||||
unfullscreen configure:
|
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
|
snapshot_kind: text
|
||||||
---
|
---
|
||||||
initial configure:
|
initial configure:
|
||||||
size: 608 × 680, bounds: 1240 × 680, states: []
|
size: 608 × 328, bounds: 1240 × 680, states: []
|
||||||
|
|
||||||
post-map configures:
|
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
|
snapshot_kind: text
|
||||||
---
|
---
|
||||||
initial configure:
|
initial configure:
|
||||||
size: 608 × 680, bounds: 1240 × 680, states: []
|
size: 608 × 328, bounds: 1240 × 680, states: []
|
||||||
|
|
||||||
post-map configures:
|
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
|
snapshot_kind: text
|
||||||
---
|
---
|
||||||
initial configure:
|
initial configure:
|
||||||
size: 616 × 688, bounds: 1248 × 688, states: []
|
size: 616 × 336, bounds: 1248 × 688, states: []
|
||||||
|
|
||||||
post-map configures:
|
post-map configures:
|
||||||
size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen]
|
size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen]
|
||||||
size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated]
|
size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated]
|
||||||
|
|
||||||
unfullscreen configure:
|
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
|
snapshot_kind: text
|
||||||
---
|
---
|
||||||
initial configure:
|
initial configure:
|
||||||
size: 616 × 688, bounds: 1248 × 688, states: []
|
size: 616 × 336, bounds: 1248 × 688, states: []
|
||||||
|
|
||||||
post-map configures:
|
post-map configures:
|
||||||
size: 616 × 688, bounds: 1248 × 688, states: []
|
size: 616 × 336, bounds: 1248 × 688, states: []
|
||||||
size: 616 × 688, bounds: 1248 × 688, states: [Activated]
|
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]
|
size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated]
|
||||||
|
|
||||||
unfullscreen configure:
|
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
|
snapshot_kind: text
|
||||||
---
|
---
|
||||||
initial configure:
|
initial configure:
|
||||||
size: 616 × 688, bounds: 1248 × 688, states: []
|
size: 616 × 336, bounds: 1248 × 688, states: []
|
||||||
|
|
||||||
post-map configures:
|
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
|
snapshot_kind: text
|
||||||
---
|
---
|
||||||
initial configure:
|
initial configure:
|
||||||
size: 616 × 688, bounds: 1248 × 688, states: []
|
size: 616 × 336, bounds: 1248 × 688, states: []
|
||||||
|
|
||||||
post-map configures:
|
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
|
snapshot_kind: text
|
||||||
---
|
---
|
||||||
initial configure:
|
initial configure:
|
||||||
size: 1000 × 680, bounds: 1240 × 680, states: []
|
size: 1000 × 500, bounds: 1240 × 680, states: []
|
||||||
|
|
||||||
post-map configures:
|
post-map configures:
|
||||||
size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen]
|
size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen]
|
||||||
size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated]
|
size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated]
|
||||||
|
|
||||||
unfullscreen configure:
|
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
|
snapshot_kind: text
|
||||||
---
|
---
|
||||||
initial configure:
|
initial configure:
|
||||||
size: 1000 × 680, bounds: 1240 × 680, states: []
|
size: 1000 × 500, bounds: 1240 × 680, states: []
|
||||||
|
|
||||||
post-map configures:
|
post-map configures:
|
||||||
size: 1000 × 680, bounds: 1240 × 680, states: []
|
size: 1000 × 500, bounds: 1240 × 680, states: []
|
||||||
size: 1000 × 680, bounds: 1240 × 680, states: [Activated]
|
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]
|
size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated]
|
||||||
|
|
||||||
unfullscreen configure:
|
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
|
snapshot_kind: text
|
||||||
---
|
---
|
||||||
initial configure:
|
initial configure:
|
||||||
size: 1000 × 680, bounds: 1240 × 680, states: []
|
size: 1000 × 500, bounds: 1240 × 680, states: []
|
||||||
|
|
||||||
post-map configures:
|
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
|
snapshot_kind: text
|
||||||
---
|
---
|
||||||
initial configure:
|
initial configure:
|
||||||
size: 1000 × 680, bounds: 1240 × 680, states: []
|
size: 1000 × 500, bounds: 1240 × 680, states: []
|
||||||
|
|
||||||
post-map configures:
|
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
|
snapshot_kind: text
|
||||||
---
|
---
|
||||||
initial configure:
|
initial configure:
|
||||||
size: 1000 × 688, bounds: 1248 × 688, states: []
|
size: 1000 × 500, bounds: 1248 × 688, states: []
|
||||||
|
|
||||||
post-map configures:
|
post-map configures:
|
||||||
size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen]
|
size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen]
|
||||||
size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated]
|
size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated]
|
||||||
|
|
||||||
unfullscreen configure:
|
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
|
snapshot_kind: text
|
||||||
---
|
---
|
||||||
initial configure:
|
initial configure:
|
||||||
size: 1000 × 688, bounds: 1248 × 688, states: []
|
size: 1000 × 500, bounds: 1248 × 688, states: []
|
||||||
|
|
||||||
post-map configures:
|
post-map configures:
|
||||||
size: 1000 × 688, bounds: 1248 × 688, states: []
|
size: 1000 × 500, bounds: 1248 × 688, states: []
|
||||||
size: 1000 × 688, bounds: 1248 × 688, states: [Activated]
|
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]
|
size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated]
|
||||||
|
|
||||||
unfullscreen configure:
|
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
|
snapshot_kind: text
|
||||||
---
|
---
|
||||||
initial configure:
|
initial configure:
|
||||||
size: 1000 × 688, bounds: 1248 × 688, states: []
|
size: 1000 × 500, bounds: 1248 × 688, states: []
|
||||||
|
|
||||||
post-map configures:
|
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
|
snapshot_kind: text
|
||||||
---
|
---
|
||||||
initial configure:
|
initial configure:
|
||||||
size: 1000 × 688, bounds: 1248 × 688, states: []
|
size: 1000 × 500, bounds: 1248 × 688, states: []
|
||||||
|
|
||||||
post-map configures:
|
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
|
snapshot_kind: text
|
||||||
---
|
---
|
||||||
initial configure:
|
initial configure:
|
||||||
size: 1000 × 680, bounds: 1240 × 680, states: []
|
size: 1000 × 328, bounds: 1240 × 680, states: []
|
||||||
|
|
||||||
post-map configures:
|
post-map configures:
|
||||||
size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen]
|
size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen]
|
||||||
size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated]
|
size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated]
|
||||||
|
|
||||||
unfullscreen configure:
|
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
|
snapshot_kind: text
|
||||||
---
|
---
|
||||||
initial configure:
|
initial configure:
|
||||||
size: 1000 × 680, bounds: 1240 × 680, states: []
|
size: 1000 × 328, bounds: 1240 × 680, states: []
|
||||||
|
|
||||||
post-map configures:
|
post-map configures:
|
||||||
size: 1000 × 680, bounds: 1240 × 680, states: []
|
size: 1000 × 328, bounds: 1240 × 680, states: []
|
||||||
size: 1000 × 680, bounds: 1240 × 680, states: [Activated]
|
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]
|
size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated]
|
||||||
|
|
||||||
unfullscreen configure:
|
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
|
snapshot_kind: text
|
||||||
---
|
---
|
||||||
initial configure:
|
initial configure:
|
||||||
size: 1000 × 680, bounds: 1240 × 680, states: []
|
size: 1000 × 328, bounds: 1240 × 680, states: []
|
||||||
|
|
||||||
post-map configures:
|
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
|
snapshot_kind: text
|
||||||
---
|
---
|
||||||
initial configure:
|
initial configure:
|
||||||
size: 1000 × 680, bounds: 1240 × 680, states: []
|
size: 1000 × 328, bounds: 1240 × 680, states: []
|
||||||
|
|
||||||
post-map configures:
|
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
|
snapshot_kind: text
|
||||||
---
|
---
|
||||||
initial configure:
|
initial configure:
|
||||||
size: 1000 × 688, bounds: 1248 × 688, states: []
|
size: 1000 × 336, bounds: 1248 × 688, states: []
|
||||||
|
|
||||||
post-map configures:
|
post-map configures:
|
||||||
size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen]
|
size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen]
|
||||||
size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated]
|
size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated]
|
||||||
|
|
||||||
unfullscreen configure:
|
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
|
snapshot_kind: text
|
||||||
---
|
---
|
||||||
initial configure:
|
initial configure:
|
||||||
size: 1000 × 688, bounds: 1248 × 688, states: []
|
size: 1000 × 336, bounds: 1248 × 688, states: []
|
||||||
|
|
||||||
post-map configures:
|
post-map configures:
|
||||||
size: 1000 × 688, bounds: 1248 × 688, states: []
|
size: 1000 × 336, bounds: 1248 × 688, states: []
|
||||||
size: 1000 × 688, bounds: 1248 × 688, states: [Activated]
|
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]
|
size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated]
|
||||||
|
|
||||||
unfullscreen configure:
|
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
|
snapshot_kind: text
|
||||||
---
|
---
|
||||||
initial configure:
|
initial configure:
|
||||||
size: 1000 × 688, bounds: 1248 × 688, states: []
|
size: 1000 × 336, bounds: 1248 × 688, states: []
|
||||||
|
|
||||||
post-map configures:
|
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
|
snapshot_kind: text
|
||||||
---
|
---
|
||||||
initial configure:
|
initial configure:
|
||||||
size: 1000 × 688, bounds: 1248 × 688, states: []
|
size: 1000 × 336, bounds: 1248 × 688, states: []
|
||||||
|
|
||||||
post-map configures:
|
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
|
snapshot_kind: text
|
||||||
---
|
---
|
||||||
initial configure:
|
initial configure:
|
||||||
size: 292 × 680, bounds: 1240 × 680, states: []
|
size: 292 × 500, bounds: 1240 × 680, states: []
|
||||||
|
|
||||||
post-map configures:
|
post-map configures:
|
||||||
size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen]
|
size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen]
|
||||||
size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated]
|
size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated]
|
||||||
|
|
||||||
unfullscreen configure:
|
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
|
snapshot_kind: text
|
||||||
---
|
---
|
||||||
initial configure:
|
initial configure:
|
||||||
size: 292 × 680, bounds: 1240 × 680, states: []
|
size: 292 × 500, bounds: 1240 × 680, states: []
|
||||||
|
|
||||||
post-map configures:
|
post-map configures:
|
||||||
size: 292 × 680, bounds: 1240 × 680, states: []
|
size: 292 × 500, bounds: 1240 × 680, states: []
|
||||||
size: 292 × 680, bounds: 1240 × 680, states: [Activated]
|
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]
|
size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated]
|
||||||
|
|
||||||
unfullscreen configure:
|
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
|
snapshot_kind: text
|
||||||
---
|
---
|
||||||
initial configure:
|
initial configure:
|
||||||
size: 292 × 680, bounds: 1240 × 680, states: []
|
size: 292 × 500, bounds: 1240 × 680, states: []
|
||||||
|
|
||||||
post-map configures:
|
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
|
snapshot_kind: text
|
||||||
---
|
---
|
||||||
initial configure:
|
initial configure:
|
||||||
size: 292 × 680, bounds: 1240 × 680, states: []
|
size: 292 × 500, bounds: 1240 × 680, states: []
|
||||||
|
|
||||||
post-map configures:
|
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
|
snapshot_kind: text
|
||||||
---
|
---
|
||||||
initial configure:
|
initial configure:
|
||||||
size: 300 × 688, bounds: 1248 × 688, states: []
|
size: 300 × 500, bounds: 1248 × 688, states: []
|
||||||
|
|
||||||
post-map configures:
|
post-map configures:
|
||||||
size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen]
|
size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen]
|
||||||
size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated]
|
size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated]
|
||||||
|
|
||||||
unfullscreen configure:
|
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
|
snapshot_kind: text
|
||||||
---
|
---
|
||||||
initial configure:
|
initial configure:
|
||||||
size: 300 × 688, bounds: 1248 × 688, states: []
|
size: 300 × 500, bounds: 1248 × 688, states: []
|
||||||
|
|
||||||
post-map configures:
|
post-map configures:
|
||||||
size: 300 × 688, bounds: 1248 × 688, states: []
|
size: 300 × 500, bounds: 1248 × 688, states: []
|
||||||
size: 300 × 688, bounds: 1248 × 688, states: [Activated]
|
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]
|
size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated]
|
||||||
|
|
||||||
unfullscreen configure:
|
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
|
snapshot_kind: text
|
||||||
---
|
---
|
||||||
initial configure:
|
initial configure:
|
||||||
size: 300 × 688, bounds: 1248 × 688, states: []
|
size: 300 × 500, bounds: 1248 × 688, states: []
|
||||||
|
|
||||||
post-map configures:
|
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
|
snapshot_kind: text
|
||||||
---
|
---
|
||||||
initial configure:
|
initial configure:
|
||||||
size: 300 × 688, bounds: 1248 × 688, states: []
|
size: 300 × 500, bounds: 1248 × 688, states: []
|
||||||
|
|
||||||
post-map configures:
|
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
|
snapshot_kind: text
|
||||||
---
|
---
|
||||||
initial configure:
|
initial configure:
|
||||||
size: 292 × 680, bounds: 1240 × 680, states: []
|
size: 292 × 328, bounds: 1240 × 680, states: []
|
||||||
|
|
||||||
post-map configures:
|
post-map configures:
|
||||||
size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen]
|
size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen]
|
||||||
size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated]
|
size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated]
|
||||||
|
|
||||||
unfullscreen configure:
|
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
|
snapshot_kind: text
|
||||||
---
|
---
|
||||||
initial configure:
|
initial configure:
|
||||||
size: 292 × 680, bounds: 1240 × 680, states: []
|
size: 292 × 328, bounds: 1240 × 680, states: []
|
||||||
|
|
||||||
post-map configures:
|
post-map configures:
|
||||||
size: 292 × 680, bounds: 1240 × 680, states: []
|
size: 292 × 328, bounds: 1240 × 680, states: []
|
||||||
size: 292 × 680, bounds: 1240 × 680, states: [Activated]
|
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]
|
size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated]
|
||||||
|
|
||||||
unfullscreen configure:
|
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
|
snapshot_kind: text
|
||||||
---
|
---
|
||||||
initial configure:
|
initial configure:
|
||||||
size: 292 × 680, bounds: 1240 × 680, states: []
|
size: 292 × 328, bounds: 1240 × 680, states: []
|
||||||
|
|
||||||
post-map configures:
|
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
|
snapshot_kind: text
|
||||||
---
|
---
|
||||||
initial configure:
|
initial configure:
|
||||||
size: 292 × 680, bounds: 1240 × 680, states: []
|
size: 292 × 328, bounds: 1240 × 680, states: []
|
||||||
|
|
||||||
post-map configures:
|
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
|
snapshot_kind: text
|
||||||
---
|
---
|
||||||
initial configure:
|
initial configure:
|
||||||
size: 300 × 688, bounds: 1248 × 688, states: []
|
size: 300 × 336, bounds: 1248 × 688, states: []
|
||||||
|
|
||||||
post-map configures:
|
post-map configures:
|
||||||
size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen]
|
size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen]
|
||||||
size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated]
|
size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated]
|
||||||
|
|
||||||
unfullscreen configure:
|
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
|
snapshot_kind: text
|
||||||
---
|
---
|
||||||
initial configure:
|
initial configure:
|
||||||
size: 300 × 688, bounds: 1248 × 688, states: []
|
size: 300 × 336, bounds: 1248 × 688, states: []
|
||||||
|
|
||||||
post-map configures:
|
post-map configures:
|
||||||
size: 300 × 688, bounds: 1248 × 688, states: []
|
size: 300 × 336, bounds: 1248 × 688, states: []
|
||||||
size: 300 × 688, bounds: 1248 × 688, states: [Activated]
|
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]
|
size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated]
|
||||||
|
|
||||||
unfullscreen configure:
|
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
|
snapshot_kind: text
|
||||||
---
|
---
|
||||||
initial configure:
|
initial configure:
|
||||||
size: 300 × 688, bounds: 1248 × 688, states: []
|
size: 300 × 336, bounds: 1248 × 688, states: []
|
||||||
|
|
||||||
post-map configures:
|
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
|
snapshot_kind: text
|
||||||
---
|
---
|
||||||
initial configure:
|
initial configure:
|
||||||
size: 300 × 688, bounds: 1248 × 688, states: []
|
size: 300 × 336, bounds: 1248 × 688, states: []
|
||||||
|
|
||||||
post-map configures:
|
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
|
snapshot_kind: text
|
||||||
---
|
---
|
||||||
initial configure:
|
initial configure:
|
||||||
size: 0 × 680, bounds: 1240 × 680, states: []
|
size: 0 × 500, bounds: 1240 × 680, states: []
|
||||||
|
|
||||||
post-map configures:
|
post-map configures:
|
||||||
size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen]
|
size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen]
|
||||||
size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated]
|
size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated]
|
||||||
|
|
||||||
unfullscreen configure:
|
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
|
snapshot_kind: text
|
||||||
---
|
---
|
||||||
initial configure:
|
initial configure:
|
||||||
size: 0 × 680, bounds: 1240 × 680, states: []
|
size: 0 × 500, bounds: 1240 × 680, states: []
|
||||||
|
|
||||||
post-map configures:
|
post-map configures:
|
||||||
size: 0 × 680, bounds: 1240 × 680, states: []
|
size: 0 × 500, bounds: 1240 × 680, states: []
|
||||||
size: 1 × 680, bounds: 1240 × 680, states: [Activated]
|
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]
|
size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated]
|
||||||
|
|
||||||
unfullscreen configure:
|
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
|
snapshot_kind: text
|
||||||
---
|
---
|
||||||
initial configure:
|
initial configure:
|
||||||
size: 0 × 680, bounds: 1240 × 680, states: []
|
size: 0 × 500, bounds: 1240 × 680, states: []
|
||||||
|
|
||||||
post-map configures:
|
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
|
snapshot_kind: text
|
||||||
---
|
---
|
||||||
initial configure:
|
initial configure:
|
||||||
size: 0 × 680, bounds: 1240 × 680, states: []
|
size: 0 × 500, bounds: 1240 × 680, states: []
|
||||||
|
|
||||||
post-map configures:
|
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
|
snapshot_kind: text
|
||||||
---
|
---
|
||||||
initial configure:
|
initial configure:
|
||||||
size: 0 × 688, bounds: 1248 × 688, states: []
|
size: 0 × 500, bounds: 1248 × 688, states: []
|
||||||
|
|
||||||
post-map configures:
|
post-map configures:
|
||||||
size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen]
|
size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen]
|
||||||
size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated]
|
size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated]
|
||||||
|
|
||||||
unfullscreen configure:
|
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
|
snapshot_kind: text
|
||||||
---
|
---
|
||||||
initial configure:
|
initial configure:
|
||||||
size: 0 × 688, bounds: 1248 × 688, states: []
|
size: 0 × 500, bounds: 1248 × 688, states: []
|
||||||
|
|
||||||
post-map configures:
|
post-map configures:
|
||||||
size: 0 × 688, bounds: 1248 × 688, states: []
|
size: 0 × 500, bounds: 1248 × 688, states: []
|
||||||
size: 1 × 688, bounds: 1248 × 688, states: [Activated]
|
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]
|
size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated]
|
||||||
|
|
||||||
unfullscreen configure:
|
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
|
snapshot_kind: text
|
||||||
---
|
---
|
||||||
initial configure:
|
initial configure:
|
||||||
size: 0 × 688, bounds: 1248 × 688, states: []
|
size: 0 × 500, bounds: 1248 × 688, states: []
|
||||||
|
|
||||||
post-map configures:
|
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
|
snapshot_kind: text
|
||||||
---
|
---
|
||||||
initial configure:
|
initial configure:
|
||||||
size: 0 × 688, bounds: 1248 × 688, states: []
|
size: 0 × 500, bounds: 1248 × 688, states: []
|
||||||
|
|
||||||
post-map configures:
|
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
|
snapshot_kind: text
|
||||||
---
|
---
|
||||||
initial configure:
|
initial configure:
|
||||||
size: 0 × 680, bounds: 1240 × 680, states: []
|
size: 0 × 328, bounds: 1240 × 680, states: []
|
||||||
|
|
||||||
post-map configures:
|
post-map configures:
|
||||||
size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen]
|
size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen]
|
||||||
size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated]
|
size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated]
|
||||||
|
|
||||||
unfullscreen configure:
|
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
|
snapshot_kind: text
|
||||||
---
|
---
|
||||||
initial configure:
|
initial configure:
|
||||||
size: 0 × 680, bounds: 1240 × 680, states: []
|
size: 0 × 328, bounds: 1240 × 680, states: []
|
||||||
|
|
||||||
post-map configures:
|
post-map configures:
|
||||||
size: 0 × 680, bounds: 1240 × 680, states: []
|
size: 0 × 328, bounds: 1240 × 680, states: []
|
||||||
size: 1 × 680, bounds: 1240 × 680, states: [Activated]
|
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]
|
size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated]
|
||||||
|
|
||||||
unfullscreen configure:
|
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
|
snapshot_kind: text
|
||||||
---
|
---
|
||||||
initial configure:
|
initial configure:
|
||||||
size: 0 × 680, bounds: 1240 × 680, states: []
|
size: 0 × 328, bounds: 1240 × 680, states: []
|
||||||
|
|
||||||
post-map configures:
|
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
|
snapshot_kind: text
|
||||||
---
|
---
|
||||||
initial configure:
|
initial configure:
|
||||||
size: 0 × 680, bounds: 1240 × 680, states: []
|
size: 0 × 328, bounds: 1240 × 680, states: []
|
||||||
|
|
||||||
post-map configures:
|
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
|
snapshot_kind: text
|
||||||
---
|
---
|
||||||
initial configure:
|
initial configure:
|
||||||
size: 0 × 688, bounds: 1248 × 688, states: []
|
size: 0 × 336, bounds: 1248 × 688, states: []
|
||||||
|
|
||||||
post-map configures:
|
post-map configures:
|
||||||
size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen]
|
size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen]
|
||||||
size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated]
|
size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated]
|
||||||
|
|
||||||
unfullscreen configure:
|
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
|
snapshot_kind: text
|
||||||
---
|
---
|
||||||
initial configure:
|
initial configure:
|
||||||
size: 0 × 688, bounds: 1248 × 688, states: []
|
size: 0 × 336, bounds: 1248 × 688, states: []
|
||||||
|
|
||||||
post-map configures:
|
post-map configures:
|
||||||
size: 0 × 688, bounds: 1248 × 688, states: []
|
size: 0 × 336, bounds: 1248 × 688, states: []
|
||||||
size: 1 × 688, bounds: 1248 × 688, states: [Activated]
|
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]
|
size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated]
|
||||||
|
|
||||||
unfullscreen configure:
|
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
|
snapshot_kind: text
|
||||||
---
|
---
|
||||||
initial configure:
|
initial configure:
|
||||||
size: 0 × 688, bounds: 1248 × 688, states: []
|
size: 0 × 336, bounds: 1248 × 688, states: []
|
||||||
|
|
||||||
post-map configures:
|
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
|
snapshot_kind: text
|
||||||
---
|
---
|
||||||
initial configure:
|
initial configure:
|
||||||
size: 0 × 688, bounds: 1248 × 688, states: []
|
size: 0 × 336, bounds: 1248 × 688, states: []
|
||||||
|
|
||||||
post-map configures:
|
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
|
snapshot_kind: text
|
||||||
---
|
---
|
||||||
initial configure:
|
initial configure:
|
||||||
size: 608 × 680, bounds: 1240 × 680, states: []
|
size: 608 × 500, bounds: 1240 × 680, states: []
|
||||||
|
|
||||||
post-map configures:
|
post-map configures:
|
||||||
size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen]
|
size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen]
|
||||||
size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated]
|
size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated]
|
||||||
|
|
||||||
unfullscreen configure:
|
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
|
snapshot_kind: text
|
||||||
---
|
---
|
||||||
initial configure:
|
initial configure:
|
||||||
size: 608 × 680, bounds: 1240 × 680, states: []
|
size: 608 × 500, bounds: 1240 × 680, states: []
|
||||||
|
|
||||||
post-map configures:
|
post-map configures:
|
||||||
size: 608 × 680, bounds: 1240 × 680, states: []
|
size: 608 × 500, bounds: 1240 × 680, states: []
|
||||||
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
|
snapshot_kind: text
|
||||||
---
|
---
|
||||||
initial configure:
|
initial configure:
|
||||||
size: 608 × 680, bounds: 1240 × 680, states: []
|
size: 608 × 500, bounds: 1240 × 680, states: []
|
||||||
|
|
||||||
post-map configures:
|
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
|
snapshot_kind: text
|
||||||
---
|
---
|
||||||
initial configure:
|
initial configure:
|
||||||
size: 608 × 680, bounds: 1240 × 680, states: []
|
size: 608 × 500, bounds: 1240 × 680, states: []
|
||||||
|
|
||||||
post-map configures:
|
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
|
snapshot_kind: text
|
||||||
---
|
---
|
||||||
initial configure:
|
initial configure:
|
||||||
size: 608 × 680, bounds: 1240 × 680, states: []
|
size: 608 × 500, bounds: 1240 × 680, states: []
|
||||||
|
|
||||||
post-map configures:
|
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
|
snapshot_kind: text
|
||||||
---
|
---
|
||||||
initial configure:
|
initial configure:
|
||||||
size: 616 × 688, bounds: 1248 × 688, states: []
|
size: 616 × 500, bounds: 1248 × 688, states: []
|
||||||
|
|
||||||
post-map configures:
|
post-map configures:
|
||||||
size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen]
|
size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen]
|
||||||
size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated]
|
size: 1280 × 720, bounds: 1248 × 688, states: [Fullscreen, Activated]
|
||||||
|
|
||||||
unfullscreen configure:
|
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
|
snapshot_kind: text
|
||||||
---
|
---
|
||||||
initial configure:
|
initial configure:
|
||||||
size: 616 × 688, bounds: 1248 × 688, states: []
|
size: 616 × 500, bounds: 1248 × 688, states: []
|
||||||
|
|
||||||
post-map configures:
|
post-map configures:
|
||||||
size: 616 × 688, bounds: 1248 × 688, states: []
|
size: 616 × 500, bounds: 1248 × 688, states: []
|
||||||
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
|
snapshot_kind: text
|
||||||
---
|
---
|
||||||
initial configure:
|
initial configure:
|
||||||
size: 616 × 688, bounds: 1248 × 688, states: []
|
size: 616 × 500, bounds: 1248 × 688, states: []
|
||||||
|
|
||||||
post-map configures:
|
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
|
snapshot_kind: text
|
||||||
---
|
---
|
||||||
initial configure:
|
initial configure:
|
||||||
size: 616 × 688, bounds: 1248 × 688, states: []
|
size: 616 × 500, bounds: 1248 × 688, states: []
|
||||||
|
|
||||||
post-map configures:
|
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
|
snapshot_kind: text
|
||||||
---
|
---
|
||||||
initial configure:
|
initial configure:
|
||||||
size: 616 × 688, bounds: 1248 × 688, states: []
|
size: 616 × 500, bounds: 1248 × 688, states: []
|
||||||
|
|
||||||
post-map configures:
|
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
|
snapshot_kind: text
|
||||||
---
|
---
|
||||||
initial configure:
|
initial configure:
|
||||||
size: 608 × 680, bounds: 1240 × 680, states: []
|
size: 608 × 328, bounds: 1240 × 680, states: []
|
||||||
|
|
||||||
post-map configures:
|
post-map configures:
|
||||||
size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen]
|
size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen]
|
||||||
size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated]
|
size: 1280 × 720, bounds: 1240 × 680, states: [Fullscreen, Activated]
|
||||||
|
|
||||||
unfullscreen configure:
|
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
|
snapshot_kind: text
|
||||||
---
|
---
|
||||||
initial configure:
|
initial configure:
|
||||||
size: 608 × 680, bounds: 1240 × 680, states: []
|
size: 608 × 328, bounds: 1240 × 680, states: []
|
||||||
|
|
||||||
post-map configures:
|
post-map configures:
|
||||||
size: 608 × 680, bounds: 1240 × 680, states: []
|
size: 608 × 328, bounds: 1240 × 680, states: []
|
||||||
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
|
snapshot_kind: text
|
||||||
---
|
---
|
||||||
initial configure:
|
initial configure:
|
||||||
size: 608 × 680, bounds: 1240 × 680, states: []
|
size: 608 × 328, bounds: 1240 × 680, states: []
|
||||||
|
|
||||||
post-map configures:
|
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
|
snapshot_kind: text
|
||||||
---
|
---
|
||||||
initial configure:
|
initial configure:
|
||||||
size: 608 × 680, bounds: 1240 × 680, states: []
|
size: 608 × 328, bounds: 1240 × 680, states: []
|
||||||
|
|
||||||
post-map configures:
|
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