-
Notifications
You must be signed in to change notification settings - Fork 20
Description
I was playing around in parallel mode tonight, and noticed some irregularities in the loading behavior.
- When playing a video in the NOW player, with the NEXT player selected (cyan bar at top) and next.player.toggle_show() set to false:
When you load a video into the NEXT player, next.player.toggle_show() is set to TRUE. This causes switch_to_next_player to toggle_show() for both the NOW and NEXT players to FALSE--hence dropping video feed.
- When playing a video in the NEXT player, with the NOW player selected (yellow bar at top) and now.player.toggle_show() set to false:
When you load a video into the NOW player, now.player.toggle_show() is set to TRUE. This causes playback to jump to the NOW player, even if that was unintended.
It's pretty clear these things are two manifestations of the same bug.
I have a guess as to the cause of these issues (line 136 in actions.py), but I wanted to make a post, as I have no experience in
Python or with Github in the past, so it may take a bit for me to fix this on my own.
My apologies if this behavior is working as intended or I'm misunderstanding something.