1
0
Fork 0
mirror of https://github.com/Zedfrigg/ironbar.git synced 2025-08-17 14:51:04 +02:00

refactor: address requested changes (3)

This commit is contained in:
BowDown097 2025-02-05 09:11:28 -08:00
parent d5e4e08863
commit 2fd49e0f3a
4 changed files with 5 additions and 5 deletions

View file

@ -9,6 +9,7 @@ use gtk::prelude::*;
use gtk::{Application, ApplicationWindow, IconTheme, Orientation, Window, WindowType};
use gtk_layer_shell::LayerShell;
use std::rc::Rc;
use std::sync::Arc;
use std::time::Duration;
use tracing::{debug, info};
@ -268,7 +269,7 @@ impl Bar {
output_name: &self.monitor_name,
location: $location,
icon_theme: &icon_theme,
icon_overrides: &self.ironbar.config.borrow().icon_overrides,
icon_overrides: Arc::new(self.ironbar.config.borrow().icon_overrides.clone()),
}
};
}