From 49a3579c557d1476b88c6a0425750995e5c94954 Mon Sep 17 00:00:00 2001 From: "Mr. Athozus" Date: Sat, 29 Jun 2024 22:33:33 +0200 Subject: [PATCH] Use marquee label for quicksettings titles --- .../actiondrawer/quicksettings/QuickSettingsFullDelegate.qml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/components/mobileshell/qml/actiondrawer/quicksettings/QuickSettingsFullDelegate.qml b/components/mobileshell/qml/actiondrawer/quicksettings/QuickSettingsFullDelegate.qml index 54ef3fb5..6e7238d5 100644 --- a/components/mobileshell/qml/actiondrawer/quicksettings/QuickSettingsFullDelegate.qml +++ b/components/mobileshell/qml/actiondrawer/quicksettings/QuickSettingsFullDelegate.qml @@ -85,10 +85,9 @@ QuickSettingsDelegate { anchors.left: parent.left anchors.bottom: parent.bottom - PlasmaComponents.Label { + MobileShell.MarqueeLabel { Layout.fillWidth: true - elide: Text.ElideRight - text: root.text + inputText: root.text font.pointSize: Kirigami.Theme.defaultFont.pointSize * 0.75 // TODO base height off of size of delegate font.weight: Font.Bold }