diff --git a/src/shell/applets/testcomponentsapplet/contents/ui/IconsPage.qml b/src/shell/applets/testcomponentsapplet/contents/ui/IconsPage.qml index 4fd668c8b..8d6144aed 100644 --- a/src/shell/applets/testcomponentsapplet/contents/ui/IconsPage.qml +++ b/src/shell/applets/testcomponentsapplet/contents/ui/IconsPage.qml @@ -103,13 +103,16 @@ PlasmaComponents.Page { height: _h spacing: _s PlasmaComponents.RadioButton { + id: radio text: "RadioButton" //iconSource: "call-stop" onCheckedChanged: if (checked) tfield.forceActiveFocus() } PlasmaComponents.TextField { id: tfield + enabled: radio.checked text: "input here" + clearButtonShown: true } } // PlasmaComponents.TextArea { diff --git a/src/shell/containments/testpanel/contents/ui/main.qml b/src/shell/containments/testpanel/contents/ui/main.qml index 6166387b1..1bed09414 100644 --- a/src/shell/containments/testpanel/contents/ui/main.qml +++ b/src/shell/containments/testpanel/contents/ui/main.qml @@ -59,7 +59,7 @@ Item { PlasmaComponents.BusyIndicator { z: 1000 - visible: applet.length > 0 && applet[0].busy + visible: applet && applet.length > 0 && applet[0].busy running: visible anchors.centerIn: parent }