1
0
Fork 0
mirror of https://github.com/Zedfrigg/ironbar.git synced 2025-07-01 10:41:03 +02:00

refactor: fix unused var warning

This commit is contained in:
Jake Stanger 2023-06-22 23:21:02 +01:00
parent 0e8c8a1770
commit d121dc3d1e
No known key found for this signature in database
GPG key ID: C51FC8F9CB0BEA61

View file

@ -466,7 +466,7 @@ impl Module<gtk::Box> for LauncherModule {
{
let tx = controller_tx.clone();
button.connect_clicked(move |button| {
button.connect_clicked(move |_button| {
try_send!(tx, ItemEvent::FocusWindow(win.id));
});
}