Skip to content

Commit

Permalink
Changed Dev Tool keybind from F12 to Ctrl+F12. (#16)
Browse files Browse the repository at this point in the history
Merged.
  • Loading branch information
WesternGamer authored Oct 27, 2021
1 parent 97b9ea9 commit 3773f66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion EnhancedUI/Gui/ChromiumGuiControl.Input.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public override MyGuiControlBase HandleInput()
return base.HandleInput();

// F12 opens Chromium's Developer Tools in a new window
if (MyInput.Static.IsNewKeyPressed(MyKeys.F12))
if (MyInput.Static.IsNewKeyPressed(MyKeys.F12) && MyInput.Static.IsAnyCtrlKeyPressed())
{
OpenWebDeveloperTools();
}
Expand Down

0 comments on commit 3773f66

Please sign in to comment.