-
Bug
-
Resolution: Out of scope
-
P4: Low
-
None
-
5.15.7, 6.5.0 FF
-
iOS 14, iOS 16.1
When the notification panel is shown, the app state changes in a strange way.
It goes back and forth InActive and Active status.
Notification panel
- ApplicationActive - ApplicationInActive // When the panel is open - ApplicationActive - ApplicationInActive - ApplicationActive // When the panel is closed
This does not happen with Control Panel.
Control panel
- ApplicationActive - ApplicationInActive // When the panel is shown - ApplicationActive // When the panel is closed
It can be observed by adding following code
connect(qGuiApp, &QGuiApplication;::applicationStateChanged, this, [=](const Qt::ApplicationState state) { qDebug() << __func__ << " state: " << state;
The sample project qtbug99118.zip is attached.