Актуализирована сборка под Android

This commit is contained in:
2024-05-16 15:21:42 +02:00
parent 76786176d2
commit 98a8e64a80
11 changed files with 118 additions and 119 deletions

View File

@@ -21,7 +21,7 @@ ApplicationWindow {
serviceUrl: settings.serviceUrl
onError: stackView.showError(text)
onError: (text) => stackView.showError(text)
}
header: ToolBar {
@@ -95,6 +95,14 @@ ApplicationWindow {
stackView.openPage("SettingsForm.qml")
}
}
ItemDelegate {
text: qsTr("Quit")
width: parent.width
onClicked: {
Qt.quit()
}
}
}
}