diff options
author | Steven M. Gava <elguavas@python.net> | 2002-03-12 00:21:56 (GMT) |
---|---|---|
committer | Steven M. Gava <elguavas@python.net> | 2002-03-12 00:21:56 (GMT) |
commit | b1585417d1f7ae8984ca72b16fd5a21746949ae5 (patch) | |
tree | 922d09382d0723acd2d83bdd338fb346f06f51a3 /Lib/idlelib/configDialog.py | |
parent | 314bae50b967393d1e64f5b42e3cfb2027ff9b32 (diff) | |
download | cpython-b1585417d1f7ae8984ca72b16fd5a21746949ae5.zip cpython-b1585417d1f7ae8984ca72b16fd5a21746949ae5.tar.gz cpython-b1585417d1f7ae8984ca72b16fd5a21746949ae5.tar.bz2 |
further work on dynamic config changes;
editor font
Diffstat (limited to 'Lib/idlelib/configDialog.py')
-rw-r--r-- | Lib/idlelib/configDialog.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/configDialog.py b/Lib/idlelib/configDialog.py index 4f85cc0..8367fe2 100644 --- a/Lib/idlelib/configDialog.py +++ b/Lib/idlelib/configDialog.py @@ -939,7 +939,6 @@ class ConfigDialog(Toplevel): type='bool',default=1)) ##currently set theme currentOption=idleConf.CurrentTheme() - print 'current option',currentOption ##load available theme option menus if self.themeIsBuiltin.get(): #default theme selected itemList=idleConf.GetSectionList('default','highlight') @@ -1096,6 +1095,7 @@ class ConfigDialog(Toplevel): winInstances=self.parent.instanceDict.keys() for instance in winInstances: instance.ResetColorizer() + instance.ResetFont() def Cancel(self): self.destroy() |