diff --git a/client/ui/qml/Controls2/PopupType.qml b/client/ui/qml/Controls2/PopupType.qml index 5f635593..d067fc12 100644 --- a/client/ui/qml/Controls2/PopupType.qml +++ b/client/ui/qml/Controls2/PopupType.qml @@ -47,8 +47,10 @@ Popup { id: timer interval: 400 // Milliseconds onTriggered: { - FocusController.pushRootObject(root) - FocusController.setFocusItem(closeButton) + if (!GC.isMobile()) { + FocusController.setFocusItem(closeButton) + FocusController.pushRootObject(root) + } } repeat: false // Stop the timer after one trigger running: !GC.isMobile() // Start the timer