diff options
Diffstat (limited to 'framework/qml')
-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 047c9b77..8a298989 100644 --- a/framework/qml/TextEditor.qml +++ b/framework/qml/TextEditor.qml | |||
@@ -46,7 +46,7 @@ FocusScope { | |||
46 | selectionStart: edit.selectionStart | 46 | selectionStart: edit.selectionStart |
47 | selectionEnd: edit.selectionEnd | 47 | selectionEnd: edit.selectionEnd |
48 | //textColor: colorDialog.color | 48 | //textColor: colorDialog.color |
49 | onTextChanged: root.text = text | 49 | onTextChanged: root.htmlEnabled ? root.text = htmlText : root.text = plainText |
50 | } | 50 | } |
51 | 51 | ||
52 | Kube.ScrollHelper { | 52 | Kube.ScrollHelper { |