Now cover is complete.

This commit is contained in:
2017-08-24 22:27:56 +02:00
parent 08cca3e186
commit 2ec663d48b
3 changed files with 90 additions and 18 deletions

View File

@ -3,3 +3,11 @@ function pushPresetListPage() {
pageStack.pushAttached(Qt.resolvedUrl("../PresetList.qml"))
}
}
function playPauseTimer() {
if (boxingTimer.isActive) {
boxingTimer.status = BoxingTimer.Pause
} else {
boxingTimer.restore()
}
}