fixing pref bug in macOS version (#107)
* fixing pref bug in macOS version * Update pesterchum.py
This commit is contained in:
parent
440c57226c
commit
32c4b2ca40
1 changed files with 4 additions and 1 deletions
|
@ -3347,7 +3347,10 @@ class PesterWindow(MovingWindow):
|
||||||
if opvmesssetting != curopvmess:
|
if opvmesssetting != curopvmess:
|
||||||
self.config.set("opvMessages", opvmesssetting)
|
self.config.set("opvMessages", opvmesssetting)
|
||||||
# animated smiles
|
# animated smiles
|
||||||
animatesetting = self.optionmenu.animationscheck.isChecked()
|
if hasattr(self.optionmenu, "animationscheck"):
|
||||||
|
animatesetting = self.optionmenu.animationscheck.isChecked()
|
||||||
|
else:
|
||||||
|
animatesetting = False
|
||||||
curanimate = self.config.animations()
|
curanimate = self.config.animations()
|
||||||
if animatesetting != curanimate:
|
if animatesetting != curanimate:
|
||||||
self.config.set("animations", animatesetting)
|
self.config.set("animations", animatesetting)
|
||||||
|
|
Loading…
Reference in a new issue