Handle internal idle (i.e. update handing)
*after* sending idle events so that if the
user calls Refresh() in OnIdle() the regions
will be updated afterwards.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15168
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
win->GetEventHandler()->ProcessEvent(event);
- win->OnInternalIdle();
-
if (event.MoreRequested())
needMore = TRUE;
node = node->Next();
}
+ win->OnInternalIdle();
+
return needMore;
}
win->GetEventHandler()->ProcessEvent(event);
- win->OnInternalIdle();
-
if (event.MoreRequested())
needMore = TRUE;
node = node->Next();
}
+ win->OnInternalIdle();
+
return needMore;
}