ensuring focus stays on keyHandler when presentation is visible

This commit is contained in:
Chris Cochrun 2022-10-06 05:51:31 -05:00
parent dbb832d0a6
commit 6de04aa71d

View file

@ -274,6 +274,13 @@ FocusScope {
/* } */ /* } */
} }
Timer {
interval: 500
running: true
repeat: true
onTriggered: root.visible ? keyHandler.forceActiveFocus() : null
}
function pauseVideo() { function pauseVideo() {
previewSlide.pauseVideo(); previewSlide.pauseVideo();
} }