From ae63dff0e40969e19c61cb642d9c17f0b479cc4f Mon Sep 17 00:00:00 2001 From: Kostas Karmas Date: Fri, 9 Apr 2021 15:09:10 +0200 Subject: [PATCH] Remove padding of the text in the scrollable text area CURA-8154 --- resources/qml/WelcomePages/WhatsNewContent.qml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/resources/qml/WelcomePages/WhatsNewContent.qml b/resources/qml/WelcomePages/WhatsNewContent.qml index ac0717eefc..1d90f7fb70 100644 --- a/resources/qml/WelcomePages/WhatsNewContent.qml +++ b/resources/qml/WelcomePages/WhatsNewContent.qml @@ -115,6 +115,8 @@ Item textArea.readOnly: true textArea.font: UM.Theme.getFont("medium") textArea.onLinkActivated: Qt.openUrlExternally(link) + textArea.leftPadding: 0 + textArea.rightPadding: 0 } } }