From: Vadim Zeitlin Date: Thu, 2 Jan 2003 00:41:47 +0000 (+0000) Subject: fixed wxCaret::SetSize() (closes bug 659209) X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/fa06b433fc7ed4137d7fe5195cbbec88a10291af fixed wxCaret::SetSize() (closes bug 659209) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@18498 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/docs/changes.txt b/docs/changes.txt index 38e51842b4..02352e56f8 100644 --- a/docs/changes.txt +++ b/docs/changes.txt @@ -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: diff --git a/src/msw/caret.cpp b/src/msw/caret.cpp index f1fd767110..ee761165a1 100644 --- a/src/msw/caret.cpp +++ b/src/msw/caret.cpp @@ -189,6 +189,6 @@ void wxCaret::DoSize() m_hasCaret = FALSE; CALL_CARET_API(DestroyCaret, ()); MSWCreateCaret(); - DoMove(); + OnSetFocus(); } }