Skip to content

Commit

Permalink
fix #10184, remove backspace-to-navigate.
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiaskrgr committed Mar 25, 2016
1 parent 3a372bc commit 3b6afb3
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions ports/glutin/window.rs
Expand Up @@ -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));
}
Expand Down

0 comments on commit 3b6afb3

Please sign in to comment.