Optional changes - Add padding to the textArea

Adds 15 padding to the right side of the what's new text items (text will not go under scrollbar)

Adds 15 padding to left and right of the changelog
This commit is contained in:
HellAholic 2025-03-21 23:01:16 +01:00
parent 7cfcf09ec0
commit fd13ee10e3
2 changed files with 3 additions and 1 deletions

View File

@ -43,6 +43,8 @@ Item
textArea.readOnly: true
textArea.font: UM.Theme.getFont("default")
textArea.onLinkActivated: Qt.openUrlExternally(link)
textArea.rightPadding: 15
textArea.leftPadding: 15
}
Cura.PrimaryButton

View File

@ -114,7 +114,7 @@ Item
textArea.font: UM.Theme.getFont("default")
textArea.onLinkActivated: Qt.openUrlExternally(link)
textArea.leftPadding: 0
textArea.rightPadding: 0
textArea.rightPadding: 15
}
}
}