summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--views/composer/qml/View.qml6
1 files changed, 3 insertions, 3 deletions
diff --git a/views/composer/qml/View.qml b/views/composer/qml/View.qml
index 0572a482..ad9689e8 100644
--- a/views/composer/qml/View.qml
+++ b/views/composer/qml/View.qml
@@ -298,7 +298,7 @@ Kube.View {
298 text: checked ? qsTr("plain") : qsTr("html") 298 text: checked ? qsTr("plain") : qsTr("html")
299 focusPolicy: Qt.TabFocus 299 focusPolicy: Qt.TabFocus
300 focus: false 300 focus: false
301 checked: composerController.htmlBody 301 checked: false
302 } 302 }
303 303
304 Row { 304 Row {
@@ -457,7 +457,7 @@ Kube.View {
457 enabled: composerController.foundPersonalKeys 457 enabled: composerController.foundPersonalKeys
458 Kube.CheckBox { 458 Kube.CheckBox {
459 id: encryptCheckbox 459 id: encryptCheckbox
460 checked: composerController.encrypt 460 checked: false
461 } 461 }
462 Kube.Label { 462 Kube.Label {
463 text: qsTr("encrypt") 463 text: qsTr("encrypt")
@@ -468,7 +468,7 @@ Kube.View {
468 enabled: composerController.foundPersonalKeys 468 enabled: composerController.foundPersonalKeys
469 Kube.CheckBox { 469 Kube.CheckBox {
470 id: signCheckbox 470 id: signCheckbox
471 checked: composerController.sign 471 checked: false
472 } 472 }
473 Kube.Label { 473 Kube.Label {
474 text: qsTr("sign") 474 text: qsTr("sign")