Use specific resuming text when reconnecting to a game

This commit is contained in:
Cameron Gutman
2020-12-31 21:33:41 -06:00
parent 949aaaff2a
commit 68acb78ae6
2 changed files with 8 additions and 2 deletions
+5 -1
View File
@@ -197,7 +197,11 @@ CenteredGridView {
}
var component = Qt.createComponent("StreamSegue.qml")
var segue = component.createObject(stackView, {"appName": model.name, "session": appModel.createSessionForApp(index)})
var segue = component.createObject(stackView, {
"appName": model.name,
"session": appModel.createSessionForApp(index),
"isResume": runningId === model.appid
})
stackView.push(segue)
}