Add support for selecting an app to launch directly

This commit is contained in:
Cameron Gutman
2020-11-23 21:38:22 -06:00
parent d7ca3801be
commit 72182c7caa
7 changed files with 92 additions and 11 deletions

View File

@@ -167,7 +167,7 @@ CenteredGridView {
text: qsTr("View Apps")
onTriggered: {
var component = Qt.createComponent("AppView.qml")
var appView = component.createObject(stackView, {"computerIndex": index, "objectName": model.name})
var appView = component.createObject(stackView, {"computerIndex": index, "objectName": model.name, "showGames": true})
stackView.push(appView)
}
visible: model.online && model.paired