Always perform file difference and readiness checks when paused
This commit is contained in:
parent
a11a86cc46
commit
8479e1cec7
@ -600,7 +600,6 @@ class SyncplayClient(object):
|
|||||||
def checkReadyStates(self):
|
def checkReadyStates(self):
|
||||||
if not self._client:
|
if not self._client:
|
||||||
return
|
return
|
||||||
|
|
||||||
if self._client.getPlayerPaused() or not self._userlist.currentUser.isReady():
|
if self._client.getPlayerPaused() or not self._userlist.currentUser.isReady():
|
||||||
self._warnings["not-all-ready"]["displayedFor"] = 0
|
self._warnings["not-all-ready"]["displayedFor"] = 0
|
||||||
if self._userlist.areYouAloneInRoom() or not self._userlist.currentUser.canControl():
|
if self._userlist.areYouAloneInRoom() or not self._userlist.currentUser.canControl():
|
||||||
@ -646,7 +645,7 @@ class SyncplayClient(object):
|
|||||||
pass
|
pass
|
||||||
|
|
||||||
def __displayPausedMessagesOnOSD(self):
|
def __displayPausedMessagesOnOSD(self):
|
||||||
if self._client and self._client._player and self._client._player.secondaryOSDSupported and self._userlist.currentUser.file and self._client.getPlayerPaused():
|
if self._client and self._client._player and self._client.getPlayerPaused():
|
||||||
self._checkRoomForSameFiles(OSDOnly=True)
|
self._checkRoomForSameFiles(OSDOnly=True)
|
||||||
self.checkReadyStates()
|
self.checkReadyStates()
|
||||||
elif not self._userlist.currentUser.isReady(): # CurrentUser should always be reminded they are set to not ready
|
elif not self._userlist.currentUser.isReady(): # CurrentUser should always be reminded they are set to not ready
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user