[utilities/kdebugsettings] src/quickapps/contents/ui: Fix text alignment
Laurent Montel <[email protected]>
| Newsgroups | gmane.comp.kde.cvs |
|---|---|
| Message-ID | <[email protected]> |
Git commit 1d5a9c4fbefe953888a3e7dd3a0edd664fa3afdc by Laurent Montel.
Committed on 20/07/2026 at 11:36.
Pushed by mlaurent into branch 'master'.
Fix text alignment
M +2 -3 src/quickapps/contents/ui/KDEApplicationRulesPage.qml
https://invent.kde.org/utilities/kdebugsettings/-/commit/1d5a9c4fbefe953888a3e7dd3a0edd664fa3afdc
diff --git a/src/quickapps/contents/ui/KDEApplicationRulesPage.qml b/src/quickapps/contents/ui/KDEApplicationRulesPage.qml
index e1744c8f..d0eac386 100644
--- a/src/quickapps/contents/ui/KDEApplicationRulesPage.qml
+++ b/src/quickapps/contents/ui/KDEApplicationRulesPage.qml
@@ -36,10 +36,10 @@ Kirigami.ScrollablePage {
width: parent.width
QQC2.Label {
- Layout.fillHeight: true
Layout.leftMargin: 4
- Layout.alignment: Qt.AlignLeft
text: model.description
+ Layout.alignment: Qt.AlignLeft | Qt.AlignVCenter
+ verticalAlignment: Text.AlignVCenter
QQC2.ToolTip.visible: hovered
QQC2.ToolTip.text: model.generatedToolTip
@@ -49,7 +49,6 @@ Kirigami.ScrollablePage {
}
QQC2.ComboBox {
Layout.alignment: Qt.AlignRight | Qt.AlignVCenter
-
// Keep the delegate row index distinct from ComboBox activation index.
property int rowIndex: index