From 949aaaff2a509eddb21fd94e50b475ce4f2920d6 Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Thu, 31 Dec 2020 21:31:46 -0600 Subject: [PATCH] Add tooltip for hide games option --- app/gui/AppView.qml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app/gui/AppView.qml b/app/gui/AppView.qml index bbbea435..8d015fae 100644 --- a/app/gui/AppView.qml +++ b/app/gui/AppView.qml @@ -285,6 +285,11 @@ CenteredGridView { text: qsTr("Hide Game") onTriggered: appModel.setAppHidden(model.index, !model.hidden) enabled: model.hidden || (!model.running && !model.directLaunch) + + ToolTip.text: qsTr("Hide this game from the app grid. To access hidden games, right-click on the host and choose %1.").arg(qsTr("View All Apps")) + ToolTip.delay: 1000 + ToolTip.timeout: 5000 + ToolTip.visible: hovered } } }