summary refs log tree commit diff
diff options
context:
space:
mode:
authorLoren Burkholder <computersemiexpert@outlook.com>2021-01-16 11:41:37 -0500
committerLoren Burkholder <computersemiexpert@outlook.com>2021-01-16 11:41:37 -0500
commitb46cd339a1bd74ec8a44af0b0d6d7af166026ec6 (patch)
treefaeadc022ed2629ea69ed25a609e5afde47e3c63
parentSimplify source URL construction (diff)
downloadnheko-b46cd339a1bd74ec8a44af0b0d6d7af166026ec6.tar.xz
Fix tooltips
-rw-r--r--resources/qml/StatusIndicator.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/qml/StatusIndicator.qml b/resources/qml/StatusIndicator.qml

index e9659f20..bb8a501d 100644 --- a/resources/qml/StatusIndicator.qml +++ b/resources/qml/StatusIndicator.qml
@@ -11,7 +11,7 @@ ImageButton { changeColorOnHover: (model.state == MtxEvent.Read) ToolTip.visible: hovered && model.state != MtxEvent.Empty ToolTip.text: { - switch (state) { + switch (model.state) { case MtxEvent.Failed: return qsTr("Failed"); case MtxEvent.Sent: