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:
commit
b2674dd236
1 changed files with 6 additions and 0 deletions
|
@ -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() ) );
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue