Merge pull request #29 from Xetibo/ina

Re-beautify file formatting again
This commit is contained in:
takotori 2023-10-28 18:07:37 +02:00 committed by GitHub
commit 0dd56207c8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -42,19 +42,18 @@ impl Window {
selfImp.resetSearchEntry.connect_search_changed(clone!(@ weak self as window => move |_| {
window.filterList();
}));
}));
selfImp.resetSideBarToggle.connect_clicked(clone!(@ weak self as window => move |_| {
window.toggleSidebar();
}));
}));
selfImp.resetSidebarList
.connect_row_activated(clone!(@ weak selfImp as flowbox => move |_, y| {
let result = y.downcast_ref::<SidebarEntry>().unwrap();
let clickEvent = result.imp().onClickEvent.borrow().onClickEvent;
(clickEvent)(flowbox.resetMain.get());
}),
);
}));
selfImp.resetClose.connect_clicked(clone!(@ weak self as window => move |_| {
window.close();