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:
parent
d5e4e08863
commit
2fd49e0f3a
4 changed files with 5 additions and 5 deletions
|
@ -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()),
|
||||
}
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue