diff --git a/plasmoid/package/contents/ui/DeviceDelegate.qml b/plasmoid/package/contents/ui/DeviceDelegate.qml --- a/plasmoid/package/contents/ui/DeviceDelegate.qml +++ b/plasmoid/package/contents/ui/DeviceDelegate.qml @@ -206,6 +206,7 @@ visible: notificationsModel.isAnyDimissable; anchors.right: parent.right iconSource: "window-close" + tooltip: i18n("Dismiss all notifications") onClicked: notificationsModel.dismissAll(); } } @@ -241,14 +242,16 @@ enabled: repliable anchors.right: dismissButton.left iconSource: "mail-reply-sender" + tooltip: i18n("Reply") onClicked: dbusInterface.reply(); } PlasmaComponents.ToolButton { id: dismissButton visible: notificationsModel.isAnyDimissable; enabled: dismissable anchors.right: parent.right iconSource: "window-close" + tooltip: i18n("Dismiss") onClicked: dbusInterface.dismiss(); } }