summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2020-02-10 19:41:26 (GMT)
committerGitHub <noreply@github.com>2020-02-10 19:41:26 (GMT)
commited335cf53b5d4bca9a08c9b83ba684ba17be0f10 (patch)
tree1fb0a9c056e046980238632e2944ca590080a9d5
parente00c1d0c45975c0e9367f05f8c68bb32d68c2fbf (diff)
downloadcpython-ed335cf53b5d4bca9a08c9b83ba684ba17be0f10.zip
cpython-ed335cf53b5d4bca9a08c9b83ba684ba17be0f10.tar.gz
cpython-ed335cf53b5d4bca9a08c9b83ba684ba17be0f10.tar.bz2
bpo-39600, IDLE: Remove duplicated font names (GH-18430)
In the font configuration window, remove duplicated font names.
-rw-r--r--Lib/idlelib/configdialog.py5
-rw-r--r--Misc/NEWS.d/next/IDLE/2020-02-10-17-09-48.bpo-39600.X6NsyM.rst1
2 files changed, 4 insertions, 2 deletions
diff --git a/Lib/idlelib/configdialog.py b/Lib/idlelib/configdialog.py
index 2235973..7b844f0 100644
--- a/Lib/idlelib/configdialog.py
+++ b/Lib/idlelib/configdialog.py
@@ -607,8 +607,9 @@ class FontPage(Frame):
font_bold = configured_font[2]=='bold'
# Set editor font selection list and font_name.
- fonts = list(tkFont.families(self))
- fonts.sort()
+ fonts = tkFont.families(self)
+ # remove duplicated names and sort
+ fonts = sorted(set(fonts))
for font in fonts:
self.fontlist.insert(END, font)
self.font_name.set(font_name)
diff --git a/Misc/NEWS.d/next/IDLE/2020-02-10-17-09-48.bpo-39600.X6NsyM.rst b/Misc/NEWS.d/next/IDLE/2020-02-10-17-09-48.bpo-39600.X6NsyM.rst
new file mode 100644
index 0000000..102aa75
--- /dev/null
+++ b/Misc/NEWS.d/next/IDLE/2020-02-10-17-09-48.bpo-39600.X6NsyM.rst
@@ -0,0 +1 @@
+In the font configuration window, remove duplicated font names.