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 2e80cd2 commit ce0525cCopy full SHA for ce0525c
toybox/src/context.rs
@@ -14,7 +14,7 @@ pub struct Context {
14
15
// TODO(pat.m): might want to be able to disable this.
16
/// Whether or not to show the built in debug menu.
17
- /// Can be toggled by F10.
+ /// Can be toggled by F1.
18
pub show_debug_menu: bool,
19
pub wants_quit: bool,
20
}
@@ -34,7 +34,7 @@ impl Context {
34
self.input.process();
35
self.egui = self.egui_integration.start_frame();
36
37
- if self.input.button_just_down(input::keys::F10) {
+ if self.input.button_just_down(input::keys::F1) {
38
self.show_debug_menu = !self.show_debug_menu;
39
40
0 commit comments