summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Bohlender <michael.bohlender@kdemail.net>2015-11-22 19:03:27 +0100
committerMichael Bohlender <michael.bohlender@kdemail.net>2015-11-22 19:03:27 +0100
commitd989eeacf4f3be341c352a6a7b5e97188cb9dc74 (patch)
treeac30c9b62d38f9620466476ae039185678e3e238
parent4420b6163b879b0c1cfaf54f65ce440ffbdd0088 (diff)
downloadkube-d989eeacf4f3be341c352a6a7b5e97188cb9dc74.tar.gz
kube-d989eeacf4f3be341c352a6a7b5e97188cb9dc74.zip
Add text to Compose Mail button
-rw-r--r--applications/kmail-quick/package/contents/ui/main.qml15
1 files changed, 9 insertions, 6 deletions
diff --git a/applications/kmail-quick/package/contents/ui/main.qml b/applications/kmail-quick/package/contents/ui/main.qml
index 30d1e471..737e3f59 100644
--- a/applications/kmail-quick/package/contents/ui/main.qml
+++ b/applications/kmail-quick/package/contents/ui/main.qml
@@ -18,6 +18,7 @@
18import QtQuick 2.4 18import QtQuick 2.4
19import QtQuick.Controls 1.3 19import QtQuick.Controls 1.3
20import QtQuick.Layouts 1.1 20import QtQuick.Layouts 1.1
21import org.kde.plasma.components 2.0 as PlasmaComponents
21 22
22ApplicationWindow { 23ApplicationWindow {
23 id: app 24 id: app
@@ -34,16 +35,18 @@ ApplicationWindow {
34 Row { 35 Row {
35 anchors.fill: parent 36 anchors.fill: parent
36 37
37 ToolButton {
38 iconName: "mail-receive"
39 }
40 38
41 ToolButton { 39 PlasmaComponents.ToolButton {
40
41 height: parent.height
42
42 iconName: "mail-message-new" 43 iconName: "mail-message-new"
44
45 text: "Compose"
43 } 46 }
44 } 47 }
45 48
46 ToolButton { 49 PlasmaComponents.ToolButton {
47 50
48 anchors.right: parent.right 51 anchors.right: parent.right
49 52
@@ -86,7 +89,7 @@ ApplicationWindow {
86 } 89 }
87 90
88 ColorPalette { 91 ColorPalette {
89 id: colorPalette 92 id: colorPalette
90 } 93 }
91} 94}
92 95