|
|
|
@ -141,6 +141,7 @@ PlasmaCore.ColorScope { |
|
|
|
width: Math.max(implicitWidth, units.gridUnit * 16) |
|
|
|
width: Math.max(implicitWidth, units.gridUnit * 16) |
|
|
|
|
|
|
|
|
|
|
|
PlasmaComponents.Label { |
|
|
|
PlasmaComponents.Label { |
|
|
|
|
|
|
|
font.pointSize: 11 |
|
|
|
Layout.maximumWidth: units.gridUnit * 16 |
|
|
|
Layout.maximumWidth: units.gridUnit * 16 |
|
|
|
Layout.alignment: Qt.AlignHCenter |
|
|
|
Layout.alignment: Qt.AlignHCenter |
|
|
|
Layout.fillWidth: true |
|
|
|
Layout.fillWidth: true |
|
|
|
@ -208,6 +209,7 @@ PlasmaCore.ColorScope { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
PlasmaComponents.Label { |
|
|
|
PlasmaComponents.Label { |
|
|
|
|
|
|
|
font.pointSize: 11 |
|
|
|
Layout.alignment: Qt.AlignHCenter |
|
|
|
Layout.alignment: Qt.AlignHCenter |
|
|
|
//opacity, as visible would re-layout |
|
|
|
//opacity, as visible would re-layout |
|
|
|
opacity: countDownTimer.running ? 1 : 0 |
|
|
|
opacity: countDownTimer.running ? 1 : 0 |
|
|
|
@ -232,11 +234,13 @@ PlasmaCore.ColorScope { |
|
|
|
RowLayout { |
|
|
|
RowLayout { |
|
|
|
Layout.alignment: Qt.AlignHCenter |
|
|
|
Layout.alignment: Qt.AlignHCenter |
|
|
|
PlasmaComponents.Button { |
|
|
|
PlasmaComponents.Button { |
|
|
|
|
|
|
|
font.pointSize: 11 |
|
|
|
enabled: root.currentAction != null |
|
|
|
enabled: root.currentAction != null |
|
|
|
text: i18nd("plasma_lookandfeel_org.kde.lookandfeel", "OK") |
|
|
|
text: i18nd("plasma_lookandfeel_org.kde.lookandfeel", "OK") |
|
|
|
onClicked: root.currentAction() |
|
|
|
onClicked: root.currentAction() |
|
|
|
} |
|
|
|
} |
|
|
|
PlasmaComponents.Button { |
|
|
|
PlasmaComponents.Button { |
|
|
|
|
|
|
|
font.pointSize: 11 |
|
|
|
text: i18nd("plasma_lookandfeel_org.kde.lookandfeel", "Cancel") |
|
|
|
text: i18nd("plasma_lookandfeel_org.kde.lookandfeel", "Cancel") |
|
|
|
onClicked: root.cancelRequested() |
|
|
|
onClicked: root.cancelRequested() |
|
|
|
} |
|
|
|
} |
|
|
|
|