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 f2b410f commit d5dcc4fCopy full SHA for d5dcc4f
objdiff-gui/src/hotkeys.rs
@@ -20,7 +20,9 @@ pub fn back_pressed(ctx: &Context) -> bool {
20
return false;
21
}
22
ctx.input_mut(|i| {
23
- i.key_pressed(Key::Backspace) || i.pointer.button_pressed(PointerButton::Extra1)
+ i.key_pressed(Key::Backspace)
24
+ || i.key_pressed(Key::Escape)
25
+ || i.pointer.button_pressed(PointerButton::Extra1)
26
})
27
28
0 commit comments