We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 94c3195 commit 38ee93bCopy full SHA for 38ee93b
src/app/shortcut.rs
@@ -21,8 +21,8 @@ impl Default for Shortcuts {
21
Self {
22
prev: KeyboardShortcut::new(Modifiers::NONE, egui::Key::ArrowUp),
23
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),
+ first: KeyboardShortcut::new(Modifiers::CTRL, egui::Key::Home),
+ last: KeyboardShortcut::new(Modifiers::CTRL, egui::Key::End),
26
unfilter: KeyboardShortcut::new(Modifiers::NONE, egui::Key::Escape),
27
open: KeyboardShortcut::new(Modifiers::CTRL, egui::Key::O),
28
reload: KeyboardShortcut::new(Modifiers::NONE, egui::Key::F5),
0 commit comments