Skip to content

Commit faacdf2

Browse files
committed
fix wrapping text
1 parent 7dfa2f2 commit faacdf2

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

Modules/Settings/PersonalizationTab.qml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -391,6 +391,7 @@ Item {
391391
font.pixelSize: Theme.fontSizeLarge
392392
color: Theme.surfaceText
393393
elide: Text.ElideMiddle
394+
maximumLineCount: 1
394395
width: parent.width
395396
}
396397

@@ -399,6 +400,7 @@ Item {
399400
font.pixelSize: Theme.fontSizeSmall
400401
color: Theme.surfaceVariantText
401402
elide: Text.ElideMiddle
403+
maximumLineCount: 1
402404
width: parent.width
403405
visible: SessionData.wallpaperPath !== ""
404406
}
@@ -524,7 +526,8 @@ Item {
524526
text: "Automatically cycle through wallpapers in the same folder"
525527
font.pixelSize: Theme.fontSizeSmall
526528
color: Theme.surfaceVariantText
527-
wrapMode: Text.WordWrap
529+
elide: Text.ElideRight
530+
maximumLineCount: 1
528531
width: parent.width
529532
}
530533

0 commit comments

Comments
 (0)