some minor ui fixes and ui for play/pause button for first slide

This commit is contained in:
Chris Cochrun 2022-08-29 11:38:34 -05:00
parent f5bff344c3
commit 7237601a3b
3 changed files with 81 additions and 18 deletions

View file

@ -63,17 +63,17 @@ Item {
id: playArea
anchors.fill: parent
enabled: editMode
onPressed: mpv.playPause();
/* onPressed: mpv.playPause(); */
cursorShape: preview ? Qt.ArrowCursor : Qt.BlankCursor
}
Controls.ProgressBar {
anchors.top: parent.bottom
visible: editMode
width: parent.width - 400
value: mpv.position
to: mpv.duration
}
/* Controls.ProgressBar { */
/* anchors.top: parent.bottom */
/* width: mpv.width */
/* visible: editMode */
/* value: mpv.position */
/* to: mpv.duration */
/* } */
}
Timer {