fix #10183, forward navigation key should not require shift to work.

This commit is contained in:
Matthias Krüger 2016-03-25 02:31:20 +01:00
parent 605842f193
commit 3a372bc122

View file

@ -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) => {