summaryrefslogtreecommitdiffstats
path: root/components/mail/contents/ui/main.qml
diff options
context:
space:
mode:
authorMichael Bohlender <michael.bohlender@kdemail.net>2016-06-18 15:31:45 +0200
committerMichael Bohlender <michael.bohlender@kdemail.net>2016-06-18 15:31:45 +0200
commit72e9b822a162d54e68e57ba40a3076892ab10caf (patch)
treeceae0a50db253b8e975ee09853f602fd90a28d15 /components/mail/contents/ui/main.qml
parentfda0a475a3378f0f84e08db8b6a75bef75ea3ee2 (diff)
downloadkube-72e9b822a162d54e68e57ba40a3076892ab10caf.tar.gz
kube-72e9b822a162d54e68e57ba40a3076892ab10caf.zip
add tooltips to toolbuttons
Diffstat (limited to 'components/mail/contents/ui/main.qml')
-rw-r--r--components/mail/contents/ui/main.qml8
1 files changed, 6 insertions, 2 deletions
diff --git a/components/mail/contents/ui/main.qml b/components/mail/contents/ui/main.qml
index 12815e6d..827dab39 100644
--- a/components/mail/contents/ui/main.qml
+++ b/components/mail/contents/ui/main.qml
@@ -159,6 +159,7 @@ ApplicationWindow {
159 iconName: "mail-mark-unread" 159 iconName: "mail-mark-unread"
160 text: "Mark As Read" 160 text: "Mark As Read"
161 enabled: markAsReadAction.ready 161 enabled: markAsReadAction.ready
162 tooltip: "mark mail as read"
162 onClicked: { 163 onClicked: {
163 markAsReadAction.execute() 164 markAsReadAction.execute()
164 } 165 }
@@ -168,6 +169,7 @@ ApplicationWindow {
168 iconName: "mail-mark-important" 169 iconName: "mail-mark-important"
169 text: "Mark Important" 170 text: "Mark Important"
170 enabled: false 171 enabled: false
172 tooltip: "mark mail as important"
171 onClicked: { 173 onClicked: {
172 } 174 }
173 } 175 }
@@ -176,6 +178,7 @@ ApplicationWindow {
176 iconName: "edit-delete" 178 iconName: "edit-delete"
177 text: "Delete Mail" 179 text: "Delete Mail"
178 enabled: deleteAction.ready 180 enabled: deleteAction.ready
181 tooltip: "delete email"
179 onClicked: { 182 onClicked: {
180 deleteAction.execute() 183 deleteAction.execute()
181 } 184 }
@@ -227,11 +230,12 @@ ApplicationWindow {
227 230
228 iconName: "mail-message-new" 231 iconName: "mail-message-new"
229 text: "Compose" 232 text: "Compose"
233 tooltip: "compose new email"
230 onClicked: { 234 onClicked: {
231 composerComponent.createObject(app) 235 composerComponent.createObject(app)
232 } 236 }
233 } 237 }
234 238/*
235 ToolButton { 239 ToolButton {
236 iconName: "mail-message-reply" 240 iconName: "mail-message-reply"
237 text: "Reply" 241 text: "Reply"
@@ -241,7 +245,7 @@ ApplicationWindow {
241 } 245 }
242 } 246 }
243 247
244 /* 248
245 * ToolButton { 249 * ToolButton {
246 * iconName: "mail-message-edit" 250 * iconName: "mail-message-edit"
247 * text: "Edit" 251 * text: "Edit"