It's currently not possible to pause or play videos within stremio-core app by left clicking with the mouse within the video element. This functionality does work correctly in the non-embedded - web version.
Investigation
After further investigating this, I believe the issue stems from how the WebEngineView embedded in the app handles event propagation, specifically:
Click events within the <video> element do not seem to propagate correctly - from the QML layer onto the actual web elements.
As a result the web element is unable to process click events to toggle play & pause.
Steps to reproduce:
Open stremio app and load a video
Click on the video to attempt to toggle pause - observe that the action doesn't trigger pause as expected.
It's currently not possible to pause or play videos within stremio-core app by left clicking with the mouse within the video element. This functionality does work correctly in the non-embedded - web version.
Investigation
After further investigating this, I believe the issue stems from how the
WebEngineView
embedded in the app handles event propagation, specifically:<video>
element do not seem to propagate correctly - from the QML layer onto the actual web elements.click
events to toggle play & pause.Steps to reproduce:
Environment