Change window_min_size from Size<Pixels> to Option<Size<Pixels>> (#13501)

Now we can set `window_min_size` to `None` instead of `Size::default()`.
I think this makes more sense.

Release Notes:

- N/A
This commit is contained in:
张小白 2024-06-26 02:09:08 +08:00 committed by GitHub
parent db06244972
commit d1a55d64a8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 13 additions and 11 deletions

View file

@ -124,6 +124,6 @@ fn notification_window_options(
display_id: Some(screen.id()),
window_background: WindowBackgroundAppearance::default(),
app_id: Some(app_id.to_owned()),
window_min_size: Size::default(),
window_min_size: None,
}
}