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 6df5e9a commit bf983c2Copy full SHA for bf983c2
Runtime/DevConsole.cs
@@ -75,7 +75,11 @@ public static bool IsOpen
75
/// <summary>
76
/// Whether the dev console user-defined key bindings are enabled.
77
/// </summary>
78
- public static bool IsKeyBindingsEnabled => _console.BindingsIsEnabled;
+ public static bool IsKeyBindingsEnabled
79
+ {
80
+ get => _console.BindingsIsEnabled;
81
+ set => _console.BindingsIsEnabled = value;
82
+ }
83
84
85
/// The key used to toggle the dev console window, NULL if no key.
0 commit comments