Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/mipops/dvrescue
Browse files Browse the repository at this point in the history
  • Loading branch information
dericed committed Dec 21, 2023
2 parents 7d4beb3 + 8c9c978 commit b8db24a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Source/GUI/dvrescue/dvrescue/AnalysePage.qml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ Item {
property alias dataView: dataView
property alias filesModel: fileView.filesModel
property alias recentFilesModel: recentsPopup.filesModel
property alias playerView: playerView

property int framesCount: dataModel.total
onFramesCountChanged: {
console.debug('analyse page: framesCount = ', framesCount)
Expand Down
6 changes: 6 additions & 0 deletions Source/GUI/dvrescue/dvrescue/main.qml
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,12 @@ ApplicationWindow {
checkable: true;
property int index: 1
checked: true
onCheckedChanged: {
if(!checked) {
analysePage.playerView.player.pause();
}
}

icon.source: "/icons/menu-analysis.svg"
}
NavButton {
Expand Down

0 comments on commit b8db24a

Please sign in to comment.