diff options
Diffstat (limited to 'framework/qml/AttachmentDelegate.qml')
-rw-r--r-- | framework/qml/AttachmentDelegate.qml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/framework/qml/AttachmentDelegate.qml b/framework/qml/AttachmentDelegate.qml index 4469cbdd..b98e8ba9 100644 --- a/framework/qml/AttachmentDelegate.qml +++ b/framework/qml/AttachmentDelegate.qml | |||
@@ -26,6 +26,7 @@ Item { | |||
26 | property string type | 26 | property string type |
27 | property string icon | 27 | property string icon |
28 | property alias actionIcon: actionButton.iconName | 28 | property alias actionIcon: actionButton.iconName |
29 | property alias actionTooltip: actionButton.tooltip | ||
29 | signal clicked; | 30 | signal clicked; |
30 | signal execute; | 31 | signal execute; |
31 | signal publicKeyImport; | 32 | signal publicKeyImport; |
@@ -78,6 +79,7 @@ Item { | |||
78 | width: height | 79 | width: height |
79 | onClicked: root.publicKeyImport() | 80 | onClicked: root.publicKeyImport() |
80 | padding: 0 | 81 | padding: 0 |
82 | tooltip: qsTr("Import key") | ||
81 | } | 83 | } |
82 | Kube.IconButton { | 84 | Kube.IconButton { |
83 | id: actionButton | 85 | id: actionButton |