Skip to content

Commit

Permalink
Changed font size and wrap mode for multiline text edit.
Browse files Browse the repository at this point in the history
  • Loading branch information
viktor.sklencar@lutraconsulting.co.uk authored and wonder-sk committed Aug 20, 2018
1 parent 5f5499d commit b39ee5a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/quickgui/plugin/editor/qgsquicktextedit.qml
Expand Up @@ -36,7 +36,7 @@ Item {
visible: height !== 0
anchors.left: parent.left
anchors.right: parent.right
font.pointSize: 14 * QgsQuick.Utils.dp
font.pointSize: 28

text: value || ''

Expand Down Expand Up @@ -72,6 +72,8 @@ Item {
visible: height !== 0
anchors.left: parent.left
anchors.right: parent.right
font.pointSize: 28
wrapMode: "WordWrap"

text: value || ''
textFormat: config['UseHtml'] ? TextEdit.RichText : TextEdit.PlainText
Expand Down

0 comments on commit b39ee5a

Please sign in to comment.