refactor: fix unused var warning

This commit is contained in:
Jake Stanger
2023-06-22 23:21:02 +01:00
parent 0e8c8a1770
commit d121dc3d1e

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));
});
}