summaryrefslogtreecommitdiff
path: root/Lib/idlelib/ClassBrowser.py
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2015-11-12 15:03:30 -0500
committerTerry Jan Reedy <tjreedy@udel.edu>2015-11-12 15:03:30 -0500
commit4df5c7aa30d4e8cc3542cff3d2a31c08fa16cbc5 (patch)
tree231a0a9824f9e50fc7ab1999567dc6cb7d354440 /Lib/idlelib/ClassBrowser.py
parentd5c075143b9fc133b206229c6d86cd6a0c46364a (diff)
parente19f3ec07228aeaa9bd1379413a3054953a5c51e (diff)
downloadcpython-git-4df5c7aa30d4e8cc3542cff3d2a31c08fa16cbc5.tar.gz
Merge with 3.5
Diffstat (limited to 'Lib/idlelib/ClassBrowser.py')
-rw-r--r--Lib/idlelib/ClassBrowser.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/ClassBrowser.py b/Lib/idlelib/ClassBrowser.py
index 5be65efb9b..d09c52fe4d 100644
--- a/Lib/idlelib/ClassBrowser.py
+++ b/Lib/idlelib/ClassBrowser.py
@@ -56,7 +56,7 @@ class ClassBrowser:
self.settitle()
top.focus_set()
# create scrolled canvas
- theme = idleConf.GetOption('main','Theme','name')
+ theme = idleConf.CurrentTheme()
background = idleConf.GetHighlight(theme, 'normal')['background']
sc = ScrolledCanvas(top, bg=background, highlightthickness=0, takefocus=1)
sc.frame.pack(expand=1, fill="both")