summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Mollekopf <chrigi_1@fastmail.fm>2018-07-01 19:26:15 +0200
committerChristian Mollekopf <chrigi_1@fastmail.fm>2018-07-01 19:26:15 +0200
commitfae47bbae2efd0ea40dfd4ca563591c1e4acca5c (patch)
treed47c8c905656b5f977b95edbdfdf705509a6392e
parent836f715cfde518c8572f9f131c0919659d9cb683 (diff)
downloadkube-fae47bbae2efd0ea40dfd4ca563591c1e4acca5c.tar.gz
kube-fae47bbae2efd0ea40dfd4ca563591c1e4acca5c.zip
A tooltip for the frequently elided label
-rw-r--r--views/composer/qml/AddresseeListEditor.qml8
1 files changed, 8 insertions, 0 deletions
diff --git a/views/composer/qml/AddresseeListEditor.qml b/views/composer/qml/AddresseeListEditor.qml
index 887c53f6..2110e3d9 100644
--- a/views/composer/qml/AddresseeListEditor.qml
+++ b/views/composer/qml/AddresseeListEditor.qml
@@ -20,6 +20,7 @@
20 20
21import QtQuick 2.7 21import QtQuick 2.7
22import QtQuick.Layouts 1.1 22import QtQuick.Layouts 1.1
23import QtQuick.Controls 2.2
23 24
24import org.kube.framework 1.0 as Kube 25import org.kube.framework 1.0 as Kube
25 26
@@ -60,6 +61,13 @@ FocusScope {
60 } 61 }
61 text: model.name 62 text: model.name
62 elide: Text.ElideRight 63 elide: Text.ElideRight
64 MouseArea {
65 id: mouseArea
66 anchors.fill: parent
67 hoverEnabled: true
68 }
69 ToolTip.visible: mouseArea.containsMouse
70 ToolTip.text: text
63 } 71 }
64 Kube.Icon { 72 Kube.Icon {
65 id: keyIcon 73 id: keyIcon