Details
-
Bug
-
Resolution: Unresolved
-
P2: Important
-
None
-
6.5.3, 6.7.3, 6.8.0
-
None
Description
Running the following code in macOS 15 (Sequia) will demonstrate the bug - after clicking the button and trying to show the app by clicking on the task bar app icon - the window won't show up as it should. While setting a QWidgets window visibility to false seems to work.
See attached video.
import QtQuick import QtQuick.Controls Window { id: root width: 400 height: 400 visible: true Button { anchors.centerIn: parent text: "Click me" onClicked: root.hide() } }