diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2018-04-05 10:00:31 +0200 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2018-04-05 10:00:31 +0200 |
commit | 16c9167799230aa74119a69ade0a935ccfcd91e8 (patch) | |
tree | 8cb34c47e33ed4021f0389006821777d4d9b37e1 | |
parent | da7de973f5dbff25ab954b416125c4136848da08 (diff) | |
download | kube-16c9167799230aa74119a69ade0a935ccfcd91e8.tar.gz kube-16c9167799230aa74119a69ade0a935ccfcd91e8.zip |
paintedWidth is just a deprecated alias for contentWidth
-rw-r--r-- | framework/qml/TextEditor.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/qml/TextEditor.qml b/framework/qml/TextEditor.qml index a662daa9..ec5993b7 100644 --- a/framework/qml/TextEditor.qml +++ b/framework/qml/TextEditor.qml | |||
@@ -76,7 +76,7 @@ FocusScope { | |||
76 | flickable: flickableItem | 76 | flickable: flickableItem |
77 | } | 77 | } |
78 | 78 | ||
79 | contentWidth: Math.max(edit.paintedWidth, width) | 79 | contentWidth: Math.max(edit.contentWidth, width) |
80 | contentHeight: Math.max(edit.implicitHeight, height) | 80 | contentHeight: Math.max(edit.implicitHeight, height) |
81 | 81 | ||
82 | function ensureVisible(r) { | 82 | function ensureVisible(r) { |