Details
-
Type:
Bug
-
Status: Reported
-
Priority:
Not Evaluated
-
Resolution: Unresolved
-
Affects Version/s: Some Release
-
Fix Version/s: None
-
Component/s: Single Application
-
Labels:None
-
Environment:My platform: Win7+VS2008+Qt4.6.2
Description
/* When the window is hidden, the funciton can not show the window properly. If we just call the function show(),it will show properly in any window state. So we should do some change to this function */ void QtSingleApplication::activateWindow() { if (actWin) { // actWin->setWindowState(actWin->windowState() & ~Qt::WindowMinimized); // actWin->raise(); // actWin->activateWindow(); actWin->show(); } }