smoothest windows results so far

This commit is contained in:
Charles J. Cliffe 2015-09-10 23:01:10 -04:00
parent 0a6d409065
commit eec1d7936f
1 changed files with 4 additions and 4 deletions

View File

@ -120,7 +120,7 @@ void WaterfallCanvas::processInputQueue() {
}
}
if (processed) {
Refresh();
// Refresh();
}
}
@ -133,7 +133,7 @@ void WaterfallCanvas::OnPaint(wxPaintEvent& WXUNUSED(event)) {
// glFinish();
//#endif
// processInputQueue();
processInputQueue();
const wxSize ClientSize = GetClientSize();
long double currentZoom = zoom;
@ -437,8 +437,8 @@ void WaterfallCanvas::OnKeyDown(wxKeyEvent& event) {
}
void WaterfallCanvas::OnIdle(wxIdleEvent &event) {
// Refresh();
processInputQueue();
// Refresh();
// processInputQueue();
Refresh();
event.RequestMore();
// event.Skip();
}