From 61d90a5a880ccd9c9b047e23aa195745ef96eecc Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Sun, 14 Oct 2018 22:23:08 -0700 Subject: [PATCH] Also display a tooltip when the item is highlighted by gamepad/keyboard --- app/gui/AppView.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/gui/AppView.qml b/app/gui/AppView.qml index 11042fe7..0b2f79cb 100644 --- a/app/gui/AppView.qml +++ b/app/gui/AppView.qml @@ -105,7 +105,7 @@ GridView { ToolTip.text: model.name ToolTip.delay: 1000 ToolTip.timeout: 5000 - ToolTip.visible: parent.hovered && truncated + ToolTip.visible: (parent.hovered || parent.highlighted) && truncated } function launchOrResumeSelectedApp()