Uploaded image for project: 'Qt'
  1. Qt
  2. QTBUG-68370

BusyIndicator does not show up in Fusion style

    XMLWordPrintable

Details

    • Bug
    • Resolution: Cannot Reproduce
    • P3: Somewhat important
    • None
    • 5.10.0
    • Quick: Controls 2
    • None

    Description

      BusyIndicator with its property "running" initially set to false does not show up when its property is set to true. The bug does not reproduce for default style.

      Steps:

      1. QQuickStyle::setStyle("Fusion");
        
      2. import QtQuick.Window 2.2
        import QtQuick 2.10
        import QtQuick.Controls 2.3
        import QtQuick.Layouts 1.3
        
        
        Window {
            visible: true
            width: 640
            height: 480
            title: qsTr("Hello World")
        
        
            property bool r: false
        
        
            ColumnLayout
            {
                Button
                {
                    text: "test"
                    onClicked: r = !r
                }
        
        
                BusyIndicator
                {
                    running: r
                }
            }
        }
        
        

      Attachments

        No reviews matched the request. Check your Options in the drop-down menu of this sections header.

        Activity

          People

            qt.team.quick.subscriptions Qt Quick and Widgets Team
            alervd Alexander Dyagilev
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved:

              Gerrit Reviews

                There are no open Gerrit changes