Message265189
using this as a work-around, not tested with Tcl/Tk 8.5 or older.
--- a/Lib/idlelib/configDialog.py
+++ b/Lib/idlelib/configDialog.py
@@ -113,7 +113,11 @@ class ConfigDialog(Toplevel):
def CreatePageFontTab(self):
parent = self.parent
- self.fontSize = StringVar(parent)
+ # see issue #26673
+ if TkVersion >= 8.6:
+ self.fontSize = IntVar(parent)
+ else:
+ self.fontSize = StringVar(parent)
self.fontBold = BooleanVar(parent)
self.fontName = StringVar(parent)
self.spaceNum = IntVar(parent) |
|
Date |
User |
Action |
Args |
2016-05-09 10:58:16 | doko | set | recipients:
+ doko, terry.reedy, kbk, gpolo, roger.serwy, petr.viktorin, serhiy.storchaka, wysaard |
2016-05-09 10:58:16 | doko | set | messageid: <1462791496.37.0.986792206656.issue26673@psf.upfronthosting.co.za> |
2016-05-09 10:58:16 | doko | link | issue26673 messages |
2016-05-09 10:58:15 | doko | create | |
|