1
0
Fork 0

GUI: only flush the log when it is visible

This commit is contained in:
Duncan Ogilvie 2019-11-03 23:15:59 +01:00
parent 6d6df1ff6f
commit 5141ddce95
No known key found for this signature in database
GPG Key ID: FC89E0AAA0C1AAD8
1 changed files with 2 additions and 1 deletions

View File

@ -453,5 +453,6 @@ void LogView::flushTimerSlot()
void LogView::flushLogSlot()
{
flushLog = true;
flushTimerSlot();
if(flushTimer->isActive())
flushTimerSlot();
}