Skip to content

Commit 38ee93b

Browse files
committed
feat: change shortcut to allow moving to start of search box
1 parent 94c3195 commit 38ee93b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/app/shortcut.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ impl Default for Shortcuts {
2121
Self {
2222
prev: KeyboardShortcut::new(Modifiers::NONE, egui::Key::ArrowUp),
2323
next: KeyboardShortcut::new(Modifiers::NONE, egui::Key::ArrowDown),
24-
first: KeyboardShortcut::new(Modifiers::NONE, egui::Key::Home),
25-
last: KeyboardShortcut::new(Modifiers::NONE, egui::Key::End),
24+
first: KeyboardShortcut::new(Modifiers::CTRL, egui::Key::Home),
25+
last: KeyboardShortcut::new(Modifiers::CTRL, egui::Key::End),
2626
unfilter: KeyboardShortcut::new(Modifiers::NONE, egui::Key::Escape),
2727
open: KeyboardShortcut::new(Modifiers::CTRL, egui::Key::O),
2828
reload: KeyboardShortcut::new(Modifiers::NONE, egui::Key::F5),

0 commit comments

Comments
 (0)