aboutsummaryrefslogtreecommitdiff
path: root/graphics/macgui/mactextwindow.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'graphics/macgui/mactextwindow.cpp')
-rw-r--r--graphics/macgui/mactextwindow.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/graphics/macgui/mactextwindow.cpp b/graphics/macgui/mactextwindow.cpp
index fb75f41cc5..6b46b05c8d 100644
--- a/graphics/macgui/mactextwindow.cpp
+++ b/graphics/macgui/mactextwindow.cpp
@@ -398,6 +398,12 @@ void MacTextWindow::clearInput() {
_inputText.clear();
}
+void MacTextWindow::appendInput(Common::String str) {
+ _inputText += str;
+
+ drawInput();
+}
+
//////////////////
// Cursor stuff
static void cursorTimerHandler(void *refCon) {