summaryrefslogtreecommitdiffstats
path: root/components
diff options
context:
space:
mode:
authorChristian Mollekopf <chrigi_1@fastmail.fm>2017-07-21 05:48:53 +0200
committerChristian Mollekopf <chrigi_1@fastmail.fm>2017-07-21 05:48:53 +0200
commitcd5fc3ea02bea45dc81dd33d555cf9d1265f9d3a (patch)
tree35ae52c9f34e60f1a8ef44a3a85e4272b03c20ca /components
parent4ec6700476de731ca1f3ccd40615d73481ac253b (diff)
downloadkube-cd5fc3ea02bea45dc81dd33d555cf9d1265f9d3a.tar.gz
kube-cd5fc3ea02bea45dc81dd33d555cf9d1265f9d3a.zip
Editor focus
Diffstat (limited to 'components')
-rw-r--r--components/kube/contents/ui/ComposerView.qml3
1 files changed, 3 insertions, 0 deletions
diff --git a/components/kube/contents/ui/ComposerView.qml b/components/kube/contents/ui/ComposerView.qml
index a8730328..35ae5255 100644
--- a/components/kube/contents/ui/ComposerView.qml
+++ b/components/kube/contents/ui/ComposerView.qml
@@ -241,6 +241,7 @@ Kube.View {
241 241
242 Kube.IconButton { 242 Kube.IconButton {
243 id: deleteButton 243 id: deleteButton
244 activeFocusOnTab: true
244 iconName: Kube.Icons.moveToTrash 245 iconName: Kube.Icons.moveToTrash
245 visible: enabled 246 visible: enabled
246 enabled: !!model.mail 247 enabled: !!model.mail
@@ -276,6 +277,7 @@ Kube.View {
276 Kube.TextField { 277 Kube.TextField {
277 id: subject 278 id: subject
278 Layout.fillWidth: true 279 Layout.fillWidth: true
280 activeFocusOnTab: true
279 281
280 placeholderText: "Enter Subject..." 282 placeholderText: "Enter Subject..."
281 text: composerController.subject 283 text: composerController.subject
@@ -329,6 +331,7 @@ Kube.View {
329 Kube.TextEditor { 331 Kube.TextEditor {
330 Layout.fillWidth: true 332 Layout.fillWidth: true
331 Layout.fillHeight: true 333 Layout.fillHeight: true
334 activeFocusOnTab: true
332 onActiveFocusChanged: closeFirstSplitIfNecessary() 335 onActiveFocusChanged: closeFirstSplitIfNecessary()
333 text: composerController.body 336 text: composerController.body
334 onTextChanged: composerController.body = text; 337 onTextChanged: composerController.body = text;