We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f4fb32 commit 8c9aca2Copy full SHA for 8c9aca2
1 file changed
ports/servo/browser.rs
@@ -108,7 +108,7 @@ impl Browser {
108
(CMD_OR_CONTROL, Some('q'), _) => {
109
self.event_queue.push(WindowEvent::Quit);
110
}
111
- (_, Some('3'), _) => if mods ^ KeyModifiers::CONTROL == KeyModifiers::SHIFT {
+ (_, Some('3'), _) if mods ^ KeyModifiers::CONTROL == KeyModifiers::SHIFT => {
112
self.event_queue.push(WindowEvent::CaptureWebRender);
113
114
(KeyModifiers::CONTROL, None, Key::F10) => {
0 commit comments