chore: Open sidebar with ctrl-f

This commit is contained in:
dashie 2023-12-15 17:48:10 +00:00
parent 9d3fc438b0
commit b97da674a8
2 changed files with 5 additions and 1 deletions

View file

@ -7,7 +7,7 @@ repository = "https://github.com/Xetibo/ReSet"
license = "GPL-3.0-only"
[dependencies]
reset_daemon = "0.6.2"
reset_daemon = "0.6.3"
re_set-lib = "0.8.5"
adw = { version = "0.5.3", package = "libadwaita", features = ["v1_4"] }
dbus = "0.9.7"

View file

@ -38,6 +38,10 @@ impl ReSetWindow {
pub fn setup_shortcuts(&self) {
let search_action = ActionEntry::builder("search")
.activate(move |window: &Self, _, _| {
let imp = window.imp();
if !imp.reset_overlay_split_view.shows_sidebar() {
imp.reset_overlay_split_view.set_show_sidebar(true);
}
window.imp().reset_search_entry.grab_focus();
})
.build();