summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--components/kube/contents/ui/ComposerView.qml6
1 files changed, 3 insertions, 3 deletions
diff --git a/components/kube/contents/ui/ComposerView.qml b/components/kube/contents/ui/ComposerView.qml
index b5842dec..fe53f023 100644
--- a/components/kube/contents/ui/ComposerView.qml
+++ b/components/kube/contents/ui/ComposerView.qml
@@ -275,7 +275,7 @@ Kube.View {
275 Kube.Button { 275 Kube.Button {
276 id: html 276 id: html
277 277
278 text: checked ? "html" : "plain" 278 text: checked ? qsTr("plain") : qsTr("html")
279 checkable: true 279 checkable: true
280 } 280 }
281 281
@@ -354,8 +354,8 @@ Kube.View {
354 selectByMouse: true 354 selectByMouse: true
355 persistentSelection: true 355 persistentSelection: true
356 356
357// onActiveFocusChanged: closeFirstSplitIfNecessary() 357 onActiveFocusChanged: closeFirstSplitIfNecessary()
358// Keys.onEscapePressed: recipients.forceActiveFocus() 358 Keys.onEscapePressed: recipients.forceActiveFocus()
359// text: document.text //composerController.body 359// text: document.text //composerController.body
360// onTextChanged: composerController.body = text; 360// onTextChanged: composerController.body = text;
361 } 361 }