diff --git a/qml/pages/MainPage.qml b/qml/pages/MainPage.qml index a6db6f4..db8d57a 100644 --- a/qml/pages/MainPage.qml +++ b/qml/pages/MainPage.qml @@ -361,14 +361,16 @@ Page } Component { - id: id_Dialog_Autosave + id: id_Dialog_Autosave Dialog { + width: parent.width canAccept: true acceptDestination: mainPage acceptDestinationAction: PageStackAction.Pop + Flickable { width: parent.width @@ -379,11 +381,10 @@ Page { width: parent.width - DialogHeader { title: qsTr("Uncompleted workout found!") } - - Label + DialogHeader { - text: qsTr("Accept - resume workout\r\nCancel - delete workout") + title: qsTr("Uncompleted workout found!") + defaultAcceptText: qsTr("Resume") } } }