From: Karsten Ballüder Date: Mon, 21 Jun 1999 11:17:16 +0000 (+0000) Subject: cursor reflects focus change X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/3959bace922c8b0d920206f606cd48edb92dfbdb cursor reflects focus change git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2845 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/samples/richedit/wxlwindow.cpp b/samples/richedit/wxlwindow.cpp index 1846e0a668..644c49dce3 100644 --- a/samples/richedit/wxlwindow.cpp +++ b/samples/richedit/wxlwindow.cpp @@ -1181,6 +1181,7 @@ wxLayoutWindow::OnSetFocus(wxFocusEvent &ev) { m_HaveFocus = true; ev.Skip(); + Refresh(FALSE); // cursor must change } void @@ -1188,6 +1189,7 @@ wxLayoutWindow::OnKillFocus(wxFocusEvent &ev) { m_HaveFocus = false; ev.Skip(); + Refresh(FALSE);// cursor must change } // ----------------------------------------------------------------------------