]> git.saurik.com Git - wxWidgets.git/commitdiff
fixed wxCaret::SetSize() (closes bug 659209)
authorVadim Zeitlin <vadim@wxwidgets.org>
Thu, 2 Jan 2003 00:41:47 +0000 (00:41 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Thu, 2 Jan 2003 00:41:47 +0000 (00:41 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@18498 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

docs/changes.txt
src/msw/caret.cpp

index 38e51842b4bcab307e491ec7f29072d68a0eadd8..02352e56f8619eef475efbb72cbdd65f6b4c36db 100644 (file)
@@ -24,6 +24,7 @@ wxMSW:
 
 - wxStaticBitmap doesn't stretch its bitmap any longer (like other ports)
 - support for accelerator keys in the owner drawn menus (Derry Bryson)
+- wxCaret::SetSize() doesn't hide the caret any longer as it used to
 - wxCheckListBox::Check() doesn't send CHECKLISTBOX_TOGGLE event any more
 
 All:
index f1fd767110b7f566514595d60bec92809295f309..ee761165a116c557f584ee47b56964c92a115f7d 100644 (file)
@@ -189,6 +189,6 @@ void wxCaret::DoSize()
         m_hasCaret = FALSE;
         CALL_CARET_API(DestroyCaret, ());
         MSWCreateCaret();
-        DoMove();
+        OnSetFocus();
     }
 }