]> git.saurik.com Git - wxWidgets.git/commitdiff
Don't set insertion point if the text is the same in SetValue
authorJulian Smart <julian@anthemion.co.uk>
Fri, 10 Oct 2003 08:21:08 +0000 (08:21 +0000)
committerJulian Smart <julian@anthemion.co.uk>
Fri, 10 Oct 2003 08:21:08 +0000 (08:21 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24150 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/msw/textctrl.cpp

index 3b0c9572ea3628c19f2f77459f1c8c02555f7708..f7b8d15231da7d2e8c7b556efc8f608e67d6b612 100644 (file)
@@ -637,6 +637,9 @@ void wxTextCtrl::SetValue(const wxString& value)
     if ( (value.length() > 0x400) || (value != GetValue()) )
     {
         DoWriteText(value, FALSE /* not selection only */);
+        
+        // for compatibility, don't move the cursor when doing SetValue()
+        SetInsertionPoint(0);
     }
     else // same text
     {
@@ -649,9 +652,6 @@ void wxTextCtrl::SetValue(const wxString& value)
     // mark the control as being not dirty - we changed its text, not the
     // user
     DiscardEdits();
-
-    // for compatibility, don't move the cursor when doing SetValue()
-    SetInsertionPoint(0);
 }
 
 #if wxUSE_RICHEDIT && (!wxUSE_UNICODE || wxUSE_UNICODE_MSLU)