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

fix(launcher): popup not closing when hover leaves widget

Fixes #224
This commit is contained in:
Jake Stanger 2023-08-13 14:23:05 +01:00
parent 5255ddffbb
commit 54f0f232f2
No known key found for this signature in database
GPG key ID: C51FC8F9CB0BEA61
2 changed files with 33 additions and 5 deletions

View file

@ -334,7 +334,7 @@ impl Module<gtk::Box> for LauncherModule {
};
let show_names = self.show_names;
let orientation = info.bar_position.get_orientation();
let bar_position = info.bar_position;
let mut buttons = IndexMap::<String, ItemButton>::new();
@ -350,7 +350,7 @@ impl Module<gtk::Box> for LauncherModule {
&item,
appearance_options,
&icon_theme,
orientation,
bar_position,
&context.tx,
&controller_tx,
);