mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +01:00
fix #10183, forward navigation key should not require shift to work.
This commit is contained in:
parent
605842f193
commit
3a372bc122
1 changed files with 1 additions and 1 deletions
|
@ -733,7 +733,7 @@ impl WindowMethods for Window {
|
|||
(NONE, Key::Backspace) => {
|
||||
self.event_queue.borrow_mut().push(WindowEvent::Navigation(WindowNavigateMsg::Back));
|
||||
}
|
||||
(SHIFT, Key::NavigateForward) => {
|
||||
(NONE, Key::NavigateForward) => {
|
||||
self.event_queue.borrow_mut().push(WindowEvent::Navigation(WindowNavigateMsg::Forward));
|
||||
}
|
||||
(NONE, Key::NavigateBackward) => {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue