diff --git a/src/core/gui/imgui/imEditor/TextEditor.cpp b/src/core/gui/imgui/imEditor/TextEditor.cpp index d8a1e74f0..92cee62e5 100644 --- a/src/core/gui/imgui/imEditor/TextEditor.cpp +++ b/src/core/gui/imgui/imEditor/TextEditor.cpp @@ -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); } }