diff --git a/components/mobileshell/qml/actiondrawer/quicksettings/QuickSettings.qml b/components/mobileshell/qml/actiondrawer/quicksettings/QuickSettings.qml index 95eb8b83..ec09b7df 100644 --- a/components/mobileshell/qml/actiondrawer/quicksettings/QuickSettings.qml +++ b/components/mobileshell/qml/actiondrawer/quicksettings/QuickSettings.qml @@ -40,9 +40,9 @@ Item { readonly property real rowHeight: columnWidth * 0.7 readonly property real fullHeight: fullView.implicitHeight - readonly property real intendedColumnWidth: 120 - readonly property real intendedMinimizedColumnWidth: Kirigami.Units.gridUnit * 3 + Kirigami.Units.gridUnit - readonly property real minimizedRowHeight: Kirigami.Units.gridUnit * 3 + Kirigami.Units.gridUnit + readonly property real intendedColumnWidth: Kirigami.Units.gridUnit * 7 + readonly property real intendedMinimizedColumnWidth: Kirigami.Units.gridUnit * 4 + Kirigami.Units.smallSpacing + readonly property real minimizedRowHeight: Kirigami.Units.gridUnit * 4 + Kirigami.Units.smallSpacing property real minimizedViewProgress: 0 property real fullViewProgress: 1 diff --git a/components/mobileshell/qml/actiondrawer/quicksettings/QuickSettingsFullDelegate.qml b/components/mobileshell/qml/actiondrawer/quicksettings/QuickSettingsFullDelegate.qml index c6dcedab..9b076ab6 100644 --- a/components/mobileshell/qml/actiondrawer/quicksettings/QuickSettingsFullDelegate.qml +++ b/components/mobileshell/qml/actiondrawer/quicksettings/QuickSettingsFullDelegate.qml @@ -85,7 +85,7 @@ QuickSettingsDelegate { anchors.right: parent.right anchors.left: parent.left anchors.bottom: parent.bottom - + PlasmaComponents.Label { Layout.fillWidth: true elide: Text.ElideRight @@ -93,12 +93,12 @@ QuickSettingsDelegate { font.pointSize: Kirigami.Theme.defaultFont.pointSize * 0.75 // TODO base height off of size of delegate font.weight: Font.Bold } - + Components.MarqueeLabel { // if no status is given, just use On/Off inputText: root.status ? root.status : (root.enabled ? i18n("On") : i18n("Off")) opacity: 0.6 - + Layout.fillWidth: true font.pointSize: Kirigami.Theme.defaultFont.pointSize * 0.75 }