fix #10184, remove backspace-to-navigate.

This commit is contained in:
Matthias Krüger 2016-03-25 02:53:46 +01:00
parent 3a372bc122
commit 3b6afb31c6

View file

@ -727,12 +727,6 @@ impl WindowMethods for Window {
self.event_queue.borrow_mut().push(WindowEvent::ResetZoom);
}
(SHIFT, Key::Backspace) => {
self.event_queue.borrow_mut().push(WindowEvent::Navigation(WindowNavigateMsg::Forward));
}
(NONE, Key::Backspace) => {
self.event_queue.borrow_mut().push(WindowEvent::Navigation(WindowNavigateMsg::Back));
}
(NONE, Key::NavigateForward) => {
self.event_queue.borrow_mut().push(WindowEvent::Navigation(WindowNavigateMsg::Forward));
}