diff options
Diffstat (limited to 'applications/kube-mail/package/contents/ui/main.qml')
-rw-r--r-- | applications/kube-mail/package/contents/ui/main.qml | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/applications/kube-mail/package/contents/ui/main.qml b/applications/kube-mail/package/contents/ui/main.qml index ef37ae19..c1e3fcc3 100644 --- a/applications/kube-mail/package/contents/ui/main.qml +++ b/applications/kube-mail/package/contents/ui/main.qml | |||
@@ -71,7 +71,9 @@ ApplicationWindow { | |||
71 | height: parent.height | 71 | height: parent.height |
72 | iconName: "mail-message-new" | 72 | iconName: "mail-message-new" |
73 | text: "Compose" | 73 | text: "Compose" |
74 | enabled: false | 74 | onClicked: { |
75 | composer.visible = true | ||
76 | } | ||
75 | } | 77 | } |
76 | 78 | ||
77 | PlasmaComponents.ToolButton { | 79 | PlasmaComponents.ToolButton { |
@@ -131,6 +133,12 @@ ApplicationWindow { | |||
131 | 133 | ||
132 | } | 134 | } |
133 | 135 | ||
136 | FocusComposer { | ||
137 | id: composer | ||
138 | |||
139 | anchors.fill: parent | ||
140 | } | ||
141 | |||
134 | //TODO find a better way to scale UI | 142 | //TODO find a better way to scale UI |
135 | Item { | 143 | Item { |
136 | id: unit | 144 | id: unit |