Minor tweak to trace log clear to make screen refresh instantly.

This commit is contained in:
mjbudd77 2021-08-05 09:10:47 -04:00
parent 7767e8d162
commit 61661ff233
1 changed files with 4 additions and 0 deletions

View File

@ -471,6 +471,8 @@ void TraceLoggerDialog_t::logMaxLinesChanged(int index)
vbar->setValue(0);
logging = logPrev;
traceView->update();
}
//----------------------------------------------------
void TraceLoggerDialog_t::clearLog(void)
@ -488,6 +490,8 @@ void TraceLoggerDialog_t::clearLog(void)
vbar->setValue(0);
logging = logPrev;
traceView->update();
}
//----------------------------------------------------
void TraceLoggerDialog_t::toggleLoggingOnOff(void)