diff options
author | emkael <emkael@tlen.pl> | 2019-11-16 14:45:37 +0100 |
---|---|---|
committer | emkael <emkael@tlen.pl> | 2019-11-16 14:45:37 +0100 |
commit | 2f2d4788d7f501e76f3b86bec0ad732dc2387433 (patch) | |
tree | c01f5e20a9323cf229fe067547c356389765dc3b /jfr_playoff/gui/tabs.py | |
parent | 10cab28b7e5280066cd6b4442d0d3ded11e812e6 (diff) |
Fixing checkbox behaviour/value storage for boolean variables
Diffstat (limited to 'jfr_playoff/gui/tabs.py')
-rw-r--r-- | jfr_playoff/gui/tabs.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/jfr_playoff/gui/tabs.py b/jfr_playoff/gui/tabs.py index 3ebc5be..9d71465 100644 --- a/jfr_playoff/gui/tabs.py +++ b/jfr_playoff/gui/tabs.py @@ -14,7 +14,7 @@ from .frames.network import * from .frames.team import * from .frames.translations import * from .frames.visual import * -from .variables import NotifyStringVar, NotifyIntVar, NotifyNumericVar +from .variables import NotifyStringVar, NotifyNumericVar, NotifyBoolVar from ..data import PlayoffData from ..db import PlayoffDB @@ -54,7 +54,7 @@ class MainSettingsTab(PlayoffTab): self.outputPath = NotifyStringVar() self.pageTitle = NotifyStringVar() self.pageLogoh = NotifyStringVar() - self.refresh = NotifyIntVar() + self.refresh = NotifyBoolVar() self.refresh.trace('w', self._updateRefreshFields) self.refreshInterval = NotifyNumericVar() |