Benchmark page was added

This commit is contained in:
2023-04-25 13:39:14 +02:00
parent f0af00b66a
commit f95c4e304d
7 changed files with 309 additions and 0 deletions

View File

@@ -85,6 +85,7 @@ ApplicationWindow {
"orders": () => { stackView.openPage("Views/OrdersView.qml") },
"rests": () => { stackView.openPage("Views/RestsView.qml") },
"settings": () => { stackView.openPage("Views/SettingsView.qml") },
"benchmark": () => { stackView.openPage("Views/BenchmarkView.qml") },
"quit": () => { Qt.quit() }
}
@@ -108,6 +109,10 @@ ApplicationWindow {
title: qsTr("Settings")
action: "settings"
}
ListElement {
title: qsTr("Benchmark")
action: "benchmark"
}
ListElement {
title: qsTr("Quit")
action: "quit"