Skip to content

Commit

Permalink
Please consider the following formatting changes
Browse files Browse the repository at this point in the history
  • Loading branch information
alibuild committed Mar 25, 2024
1 parent 4907830 commit f54130d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Framework/GUISupport/src/FrameworkGUIDebugger.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -1244,13 +1244,13 @@ void updateWindowSize(int x, int y)
void keyDown(char key)
{
ImGuiIO& io = ImGui::GetIO();
io.AddKeyEvent((ImGuiKey)key , true);
io.AddKeyEvent((ImGuiKey)key, true);
}

void keyUp(char key)
{
ImGuiIO& io = ImGui::GetIO();
io.AddKeyEvent((ImGuiKey)key , false);
io.AddKeyEvent((ImGuiKey)key, false);
}

void charIn(char key)
Expand Down

0 comments on commit f54130d

Please sign in to comment.