Merge pull request #383 from AronVietti/335-OSX_Minimized_Bug

Fixed a bug that made the Server window stop updating
This commit is contained in:
Volker Fischer 2020-06-21 07:21:09 +02:00 committed by GitHub
commit b2674dd236
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -762,5 +762,11 @@ void CServerDlg::changeEvent ( QEvent* pEvent )
// the timer for this purpose
QTimer::singleShot ( 0, this, SLOT ( hide() ) );
}
else
{
// we have to call the show function from another thread -> use
// the timer for this purpose
QTimer::singleShot ( 0, this, SLOT ( show() ) );
}
}
}