fix(appearance): write to wrong icon theme config

This commit is contained in:
Michael Aaron Murphy 2024-10-05 14:10:12 +02:00
parent cd9a3d81e6
commit a19c9c8297
No known key found for this signature in database
GPG key ID: B2732D4240C9212C

View file

@ -466,7 +466,7 @@ impl Page {
self.icon_theme_active = Some(id);
if let Some(ref config) = self.tk_config {
_ = config.set::<String>("icon-theme", theme.id);
_ = config.set::<String>("icon_theme", theme.id);
}
tokio::spawn(set_gnome_icon_theme(theme.name));