1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00

Avoid an unexpected pause state around stats

This commit is contained in:
Robert Marshall 2020-05-26 18:58:46 +01:00
parent 2437c702fd
commit e43dcb207c

View file

@ -555,7 +555,10 @@ class PysolMenubar(PysolMenubarTk):
text=text % {'filename': filename})
def mPlayerStats(self, *args, **kw):
self.game.doPause()
wasPaused = False
if not self.game.pause:
self.game.doPause()
wasPaused = True
mode = kw.get("mode", 101)
demo = 0
gameid = None
@ -659,7 +662,9 @@ class PysolMenubar(PysolMenubarTk):
if d.status != 0:
break
mode = d.button
self.game.doPause()
if self.game.pause:
if wasPaused:
self.game.doPause()
#
# Assist menu