From 2065a0f8aa0b0dd43b88220343ab4c6cdd1bb77e Mon Sep 17 00:00:00 2001 From: Chris Cochrun Date: Sun, 5 Mar 2023 07:17:19 -0600 Subject: [PATCH] changeVideo works now --- src/qml/presenter/VideoEditor.qml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/qml/presenter/VideoEditor.qml b/src/qml/presenter/VideoEditor.qml index d4567eb..41a1773 100644 --- a/src/qml/presenter/VideoEditor.qml +++ b/src/qml/presenter/VideoEditor.qml @@ -225,7 +225,8 @@ Item { } function changeVideo(video) { - root.video = video; + let vid = videoProxyModel.getVideo(video); + root.video = vid; mpvLoadingTimer.restart(); }