diff options
Diffstat (limited to 'src/osk_gui.cpp')
-rw-r--r-- | src/osk_gui.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/osk_gui.cpp b/src/osk_gui.cpp index 800b5ef54..2200db05d 100644 --- a/src/osk_gui.cpp +++ b/src/osk_gui.cpp @@ -188,8 +188,7 @@ struct OskWindow : public Window { /* Window gets deleted when the parent window removes itself. */ return; } else { // or reset to original string - strcpy(qs->text.buf, this->orig_str_buf); - qs->text.UpdateSize(); + qs->text.Assign(this->orig_str_buf); qs->text.MovePos(WKC_END); this->InvalidateParent(); delete this; |