Feat: add icon and reorganize desktop.rs

This commit is contained in:
2026-01-30 20:27:08 +01:00
parent eb3969b952
commit 2aa58670e3
6 changed files with 31 additions and 59 deletions

View File

@@ -101,7 +101,9 @@ impl Settings {
}
pub fn save(&self) {
let _ = confy::store(APP_NAME, None, self);
if let Err(e) = confy::store(APP_NAME, None, self) {
eprintln!("Failed to save settings: {e}");
}
}
}