Continue operations in the background if the window is closed

This commit is contained in:
Jeremy Soller 2024-08-09 09:59:25 -06:00
parent 190029aa27
commit da329004aa
No known key found for this signature in database
GPG key ID: D02FD439211AF56F
6 changed files with 166 additions and 6 deletions

View file

@ -72,6 +72,7 @@ pub fn main() -> Result<(), Box<dyn std::error::Error>> {
let mut settings = Settings::default();
settings = settings.theme(config.app_theme.theme());
settings = settings.size_limits(Limits::NONE.min_width(360.0).min_height(180.0));
settings = settings.exit_on_close(false);
let flags = Flags {
config_handler,