diff --git a/ports/glutin/window.rs b/ports/glutin/window.rs index fdd026b0e85..d269ba037af 100644 --- a/ports/glutin/window.rs +++ b/ports/glutin/window.rs @@ -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)); }