a3acfbfce6
Summary: For quickly other bugs in PC3 Test Plan: Opened qmlscene on some files It's only for unit tests anyway Subscribers: kde-frameworks-devel Tags: #frameworks Differential Revision: https://phabricator.kde.org/D25822
34 lines
766 B
QML
34 lines
766 B
QML
import QtQuick 2.0
|
|
import org.kde.plasma.components 3.0 as PlasmaComponents
|
|
|
|
ComponentBase {
|
|
Column {
|
|
anchors.fill: parent
|
|
anchors.margins: 20
|
|
spacing: 20
|
|
|
|
PlasmaComponents.Label {
|
|
width: parent.width
|
|
wrapMode: Text.WordWrap
|
|
text: "When checking and unchecking the checkbox, " +
|
|
"the busy indicator should resume where it has " +
|
|
"paused and not glitch around"
|
|
}
|
|
|
|
Row {
|
|
spacing: 20
|
|
|
|
PlasmaComponents.BusyIndicator {
|
|
running: runningButton.checked
|
|
}
|
|
|
|
PlasmaComponents.CheckBox {
|
|
id: runningButton
|
|
text: "Running"
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
}
|