Skip to content

Commit 9073516

Browse files
authored
Serialize window maximized state in WindowSettings (emilk#5554)
A user of my Windows application reported a papercut where the application restores its size on next load, but does not restore its maximized state. This PR fixes that. To test, I patched https://github.com/emilk/eframe_template to use my local code since I knew that template saves/restores window data. Testing methodology was to simply `cargo run`, maximize the application, then close the application. `cargo run` again and the application should start maximized. Closes emilk#1517. * [x] I have followed the instructions in the PR template * * This is mostly true, I had difficulties running `./scripts/check.sh` for some reason. Possibly a bad Python version?
1 parent 6607cd9 commit 9073516

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

crates/egui-winit/src/lib.rs

+3
Original file line numberDiff line numberDiff line change
@@ -1824,6 +1824,9 @@ pub fn apply_viewport_builder_to_window(
18241824
let pos = PhysicalPosition::new(pixels_per_point * pos.x, pixels_per_point * pos.y);
18251825
window.set_outer_position(pos);
18261826
}
1827+
if let Some(maximized) = builder.maximized {
1828+
window.set_maximized(maximized);
1829+
}
18271830
}
18281831
}
18291832

crates/egui-winit/src/window_settings.rs

+5-1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ pub struct WindowSettings {
1313

1414
fullscreen: bool,
1515

16+
maximized: bool,
17+
1618
/// Inner size of window in logical pixels
1719
inner_size_points: Option<egui::Vec2>,
1820
}
@@ -38,6 +40,7 @@ impl WindowSettings {
3840
outer_position_pixels,
3941

4042
fullscreen: window.fullscreen().is_some(),
43+
maximized: window.is_maximized(),
4144

4245
inner_size_points: Some(egui::vec2(
4346
inner_size_points.width,
@@ -80,7 +83,8 @@ impl WindowSettings {
8083
if let Some(inner_size_points) = self.inner_size_points {
8184
viewport_builder = viewport_builder
8285
.with_inner_size(inner_size_points)
83-
.with_fullscreen(self.fullscreen);
86+
.with_fullscreen(self.fullscreen)
87+
.with_maximized(self.maximized);
8488
}
8589

8690
viewport_builder

0 commit comments

Comments
 (0)