Details
-
Type:
Bug
-
Status: Closed
-
Priority:
P2: Important
-
Resolution: Done
-
Affects Version/s: 5.10.1
-
Fix Version/s: 5.11.0 Beta 2
-
Component/s: Quick: Controls 2
-
Labels:None
-
Environment:macOS, QtQuick Fusion style
-
Commits:cbf9d8076981d07ae9c9ee9323288b2c30a8b1e8
Description
The BusyIndicator is not rendered at all when the "running" property is bound to some value.
If "running" is set to true initially, rendering works.
Note: Only "Fusion" style is affected! Works as expected with Default, Universal and Material.
import QtQuick 2.10 import QtQuick.Window 2.10 import QtQuick.Controls 2.2 Window { visible: true width: 640 height: 480 title: qsTr("Please use FUSION style") MouseArea { id: mouse anchors.fill: parent } BusyIndicator { anchors.centerIn: parent running: mouse.pressed } }