Feat: add icon and reorganize desktop.rs
Some checks failed
Deploy Website / deploy (push) Failing after 7s

This commit is contained in:
2026-01-30 20:27:08 +01:00
parent 584dbb6aad
commit 7658cf9d51
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}");
}
}
}