video playpause and font changes are working

This commit is contained in:
Chris Cochrun 2022-08-29 15:43:11 -05:00
parent 604f3d1a19
commit fbf26daebc
2 changed files with 13 additions and 10 deletions

View file

@ -58,6 +58,7 @@ Item {
mpv.setProperty("loop", "no");
/* showPassiveNotification(mpv.getProperty("loop")); */
}
/* onIsPlayingChanged: showPassiveNotification(mpv.getProperty("pause")) */
MouseArea {
id: playArea
@ -169,4 +170,8 @@ Item {
function pauseVideo() {
mpv.pause();
}
function playPauseVideo() {
mpv.playPause();
}
}