This commit is contained in:
Ashley Wulber 2024-10-17 09:58:45 -04:00 committed by Ashley Wulber
parent 478f3ead75
commit 7b9cad4d2c
5 changed files with 22 additions and 20 deletions

View file

@ -6,7 +6,7 @@
use std::collections::HashMap;
use std::{env, process};
use cosmic::app::{Task, Core, Settings};
use cosmic::app::{Core, Settings, Task};
use cosmic::iced::window;
use cosmic::iced_core::alignment::{Horizontal, Vertical};
use cosmic::iced_core::keyboard::Key;
@ -120,7 +120,7 @@ impl cosmic::Application for App {
return window::close(self.core.main_window_id().unwrap());
}
Message::WindowNew => match env::current_exe() {
Ok(exe) => match process::Task::new(&exe).spawn() {
Ok(exe) => match process::Command::new(&exe).spawn() {
Ok(_child) => {}
Err(err) => {
eprintln!("failed to execute {:?}: {}", exe, err);