Update deps

This commit is contained in:
Luke D. Jones
2023-04-26 21:35:48 +12:00
parent fdc7d88a70
commit 858c9841a7
4 changed files with 74 additions and 75 deletions

View File

@@ -15,8 +15,8 @@ eframe = { git = "https://github.com/emilk/egui", rev = "b8e798777de519de3a18787
# egui = { path = "../../egui/crates/egui" }
# eframe = { path = "../../egui/crates/eframe" }
libappindicator = "0.7" # Tray icon
gtk = "0.15.5"
libappindicator = "0.8" # Tray icon
gtk = "0.16"
daemon = { path = "../daemon" }
rog_anime = { path = "../rog-anime" }

View File

@@ -549,7 +549,7 @@ fn do_gfx_action_notif(message: &str, action: GfxUserAction, mode: GpuMode) -> R
let mut notif = Notification::new();
notif
.summary(NOTIF_HEADER)
.body(message)
.body(&format!("Changing to {mode}. {message}"))
.timeout(2000)
//.hint(Hint::Resident(true))
.hint(Hint::Category("device".into()))