]> git.saurik.com Git - wxWidgets.git/blobdiff - src/generic/caret.cpp
Added list style to text attributes, independent from paragraph style
[wxWidgets.git] / src / generic / caret.cpp
index 54cab63e4b30ee252e95d97917b3851c92afd0cc..7d5569997c319d8cc97e1b108066788476aaa319 100644 (file)
@@ -131,6 +131,9 @@ void wxCaret::DoHide()
 
 void wxCaret::DoMove()
 {
+#if wxUSE_OVERLAY
+    m_overlay.Reset();
+#endif
     if ( IsVisible() )
     {
         if ( !m_blinkedOut )
@@ -155,7 +158,9 @@ void wxCaret::DoSize()
         m_countVisible = 0;
         DoHide();
     }
-#if wxUSE_OVERLAY == 0
+#if wxUSE_OVERLAY
+    m_overlay.Reset();
+#else
     // Change bitmap size
     m_bmpUnderCaret = wxBitmap(m_width, m_height);
 #endif