diff options
Diffstat (limited to 'components')
-rw-r--r-- | components/mail/contents/ui/main.qml | 8 | ||||
-rw-r--r-- | components/package/contents/ui/AccountSwitcher.qml | 1 |
2 files changed, 7 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" |
diff --git a/components/package/contents/ui/AccountSwitcher.qml b/components/package/contents/ui/AccountSwitcher.qml index 8f7ebb08..da878acf 100644 --- a/components/package/contents/ui/AccountSwitcher.qml +++ b/components/package/contents/ui/AccountSwitcher.qml | |||
@@ -31,6 +31,7 @@ Button { | |||
31 | Layout.fillHeight: true | 31 | Layout.fillHeight: true |
32 | 32 | ||
33 | text: "Account Switcher" | 33 | text: "Account Switcher" |
34 | tooltip: "switch accounts, edit them and add new ones" | ||
34 | 35 | ||
35 | onClicked: { | 36 | onClicked: { |
36 | dialog.visible = dialog.visible ? false : true | 37 | dialog.visible = dialog.visible ? false : true |