foxygit / doom Log in
commit a64a06c4bb5d9ebcc6bb8e8c6897da1de692f7d1
Author:     Simon Howard <fraggle@gmail.com>
AuthorDate: Fri Jan 5 23:36:35 2007 +0000
Commit:     Simon Howard <fraggle@gmail.com>
CommitDate: Fri Jan 5 23:36:35 2007 +0000

    Clear the current value when entering a new value in number input boxes.

    Subversion-branch: /trunk/chocolate-doom
    Subversion-revision: 816
---
 textscreen/txt_inputbox.c | 2 +-
 textscreen/txt_spinctrl.c | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/textscreen/txt_inputbox.c b/textscreen/txt_inputbox.c
index 33775bb1..2798cce4 100644
--- a/textscreen/txt_inputbox.c
+++ b/textscreen/txt_inputbox.c
@@ -175,7 +175,7 @@ static int TXT_IntInputBoxKeyPress(TXT_UNCAST_ARG(inputbox), int key)
     {
         if (key == KEY_ENTER)
         {
-            SetBufferFromValue(inputbox);
+            strcpy(inputbox->buffer, "");
             inputbox->editing = 1;
             return 1;
         }
diff --git a/textscreen/txt_spinctrl.c b/textscreen/txt_spinctrl.c
index 145e398b..be9da823 100644
--- a/textscreen/txt_spinctrl.c
+++ b/textscreen/txt_spinctrl.c
@@ -295,7 +295,7 @@ static int TXT_SpinControlKeyPress(TXT_UNCAST_ARG(spincontrol), int key)
         if (key == KEY_ENTER)
         {
             spincontrol->editing = 1;
-            SetBuffer(spincontrol);
+            strcpy(spincontrol->buffer, "");
             return 1;
         }
         if (key == KEY_LEFTARROW)