Skip to content

Commit

Permalink
altgr fix in editor
Browse files Browse the repository at this point in the history
  • Loading branch information
Your Name committed Oct 2, 2023
1 parent e05c06e commit 4483f26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/gui/imgui/imEditor/TextEditor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -775,7 +775,7 @@ void TextEditor::HandleKeyboardInputs()
{
auto c = io.InputQueueCharacters[i];
if (c != 0 && c != 127 && (c == '\n' || c >= 32) && (!ctrl || alt)) { // altgr is alt and ctrl
std::cout << " EnterCharacter " << (int)c << std::endl;
//std::cout << " EnterCharacter " << (int)c << std::endl;
EnterCharacter(c, shift);
}
}
Expand Down

0 comments on commit 4483f26

Please sign in to comment.