fix: load custom tray icon failed due to #2886

This commit is contained in:
Tunglies
2025-03-27 11:12:08 +08:00
parent a6a6d9d036
commit ce5c86c3b0
6 changed files with 143 additions and 78 deletions

View File

@@ -7,6 +7,7 @@ pub enum Type {
Hotkey,
Window,
Config,
CMD,
}
impl fmt::Display for Type {
@@ -17,6 +18,7 @@ impl fmt::Display for Type {
Type::Hotkey => write!(f, "[Hotkey]"),
Type::Window => write!(f, "[Window]"),
Type::Config => write!(f, "[Config]"),
Type::CMD => write!(f, "[CMD]"),
}
}
}