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
+3 -1
View File
@@ -8,7 +8,9 @@ import Session 1.0
Item {
property Session session
property string appName
property string stageText : qsTr("Starting %1...").arg(appName)
property string stageText : isResume ? qsTr("Resuming %1...").arg(appName) :
qsTr("Starting %1...").arg(appName)
property bool isResume : false
property bool quitAfter : false
function stageStarting(stage)