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 8a9c83f commit 475146aCopy full SHA for 475146a
src/ImGui.NET.SampleProgram.XNA/ImGuiRenderer.cs
@@ -158,6 +158,7 @@ protected virtual void SetupInput()
158
_keys.Add(io.KeyMap[(int)ImGuiKey.Backspace] = (int)Keys.Back);
159
_keys.Add(io.KeyMap[(int)ImGuiKey.Enter] = (int)Keys.Enter);
160
_keys.Add(io.KeyMap[(int)ImGuiKey.Escape] = (int)Keys.Escape);
161
+ _keys.Add(io.KeyMap[(int)ImGuiKey.Space] = (int)Keys.Space);
162
_keys.Add(io.KeyMap[(int)ImGuiKey.A] = (int)Keys.A);
163
_keys.Add(io.KeyMap[(int)ImGuiKey.C] = (int)Keys.C);
164
_keys.Add(io.KeyMap[(int)ImGuiKey.V] = (int)Keys.V);
0 commit comments