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 475146a commit 820e5c3Copy full SHA for 820e5c3
src/ImGui.NET.SampleProgram/ImGuiController.cs
@@ -413,6 +413,7 @@ private static void SetKeyMappings()
413
io.KeyMap[(int)ImGuiKey.Backspace] = (int)Key.BackSpace;
414
io.KeyMap[(int)ImGuiKey.Enter] = (int)Key.Enter;
415
io.KeyMap[(int)ImGuiKey.Escape] = (int)Key.Escape;
416
+ io.KeyMap[(int)ImGuiKey.Space] = (int)Key.Space;
417
io.KeyMap[(int)ImGuiKey.A] = (int)Key.A;
418
io.KeyMap[(int)ImGuiKey.C] = (int)Key.C;
419
io.KeyMap[(int)ImGuiKey.V] = (int)Key.V;
0 commit comments