diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2020-02-10 21:39:43 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-10 21:39:43 (GMT) |
commit | 2e8097d1c7c04dd96061ec1498cfa088bce9085b (patch) | |
tree | 9314b167240e095eb1ec9b540ddf374a305f9441 | |
parent | 3b888ad70aaed39df1985b38b4987feb5bee7981 (diff) | |
download | cpython-2e8097d1c7c04dd96061ec1498cfa088bce9085b.zip cpython-2e8097d1c7c04dd96061ec1498cfa088bce9085b.tar.gz cpython-2e8097d1c7c04dd96061ec1498cfa088bce9085b.tar.bz2 |
bpo-39600, IDLE: Remove duplicated font names (GH-18430)
In the font configuration window, remove duplicated font names.
(cherry picked from commit ed335cf53b5d4bca9a08c9b83ba684ba17be0f10)
Co-authored-by: Victor Stinner <vstinner@python.org>
-rw-r--r-- | Lib/idlelib/configdialog.py | 5 | ||||
-rw-r--r-- | Misc/NEWS.d/next/IDLE/2020-02-10-17-09-48.bpo-39600.X6NsyM.rst | 1 |
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. |