PunctEditor.c: reset editor, when commit some text to application
authorPeng Huang <shawn.p.huang@gmail.com>
Thu, 20 May 2010 06:12:59 +0000 (14:12 +0800)
committerPeng Huang <shawn.p.huang@gmail.com>
Thu, 20 May 2010 06:12:59 +0000 (14:12 +0800)
src/PunctEditor.cc

index b87d25f..e36beb2 100644 (file)
@@ -435,6 +435,7 @@ PunctEditor::commit (const gchar *str)
 {
     StaticText text(str);
     commitText (text);
+    reset ();
 }
 
 void
@@ -446,7 +447,6 @@ PunctEditor::commit (void)
         m_buffer << *it;
     }
 
-    reset ();
     commit (m_buffer);
 }