]> git.saurik.com Git - wxWidgets.git/blobdiff - src/stc/PlatWX.cpp
Need to skipp the first half of ShowHint if the platform doesn't
[wxWidgets.git] / src / stc / PlatWX.cpp
index f0d9d17603c195acc2aaa946089d03f652c2c40e..ba0af83d73943225cce4b2a0d7ed511a34c59a93 100644 (file)
@@ -543,13 +543,11 @@ void Window::Show(bool show) {
 
 void Window::InvalidateAll() {
     GETWIN(id)->Refresh(false);
-    wxWakeUpIdle();
 }
 
 void Window::InvalidateRectangle(PRectangle rc) {
     wxRect r = wxRectFromPRectangle(rc);
     GETWIN(id)->Refresh(false, &r);
-    wxWakeUpIdle();
 }
 
 void Window::SetFont(Font &font) {