Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(browser): do not omit unexpected keyevent #20687

Merged
merged 1 commit into from Apr 25, 2018
Merged
Changes from all commits
Commits
File filter...
Filter file types
Jump to…
Jump to file
Failed to load files.

Always

Just for now

fix(browser): do not omit unexpected keyevent

- closes #20681
  • Loading branch information
kwonoj committed Apr 24, 2018
commit 8c9aca2ea336270aa2d2e18e30b672af6db03136
@@ -108,7 +108,7 @@ impl Browser {
(CMD_OR_CONTROL, Some('q'), _) => {
self.event_queue.push(WindowEvent::Quit);
}
(_, Some('3'), _) => if mods ^ KeyModifiers::CONTROL == KeyModifiers::SHIFT {
(_, Some('3'), _) if mods ^ KeyModifiers::CONTROL == KeyModifiers::SHIFT => {
self.event_queue.push(WindowEvent::CaptureWebRender);
}
(KeyModifiers::CONTROL, None, Key::F10) => {
ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.