diff options
Diffstat (limited to 'src/interface/Textbox.cpp')
| -rw-r--r-- | src/interface/Textbox.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/interface/Textbox.cpp b/src/interface/Textbox.cpp index 380ad59..328ccb5 100644 --- a/src/interface/Textbox.cpp +++ b/src/interface/Textbox.cpp @@ -1,4 +1,5 @@ #include <string> +#include <iostream> #include <stdexcept> #include "Config.h" #include "Global.h" @@ -157,6 +158,7 @@ void Textbox::OnKeyPress(int key, bool shift, bool ctrl, bool alt) if(cursor == text.length()) { text += key; + //std::cout << key << std::endl; } else { |
