launcher: ignore gtk argv so --server works

This commit is contained in:
Brad Stein 2026-04-14 08:16:57 -03:00
parent 455e73cdbc
commit e61a71bd61

View File

@ -388,7 +388,7 @@ pub fn run_gui_launcher(server_addr: String) -> Result<()> {
});
}
let _ = app.run();
let _ = app.run_with_args::<&str>(&[]);
Ok(())
}