mirror of
https://github.com/python/cpython.git
synced 2025-10-06 23:21:06 +00:00
bpo-39600: Adjust code, add idlelib/NEWS item (GH-18449)
Complete previous patch.
This commit is contained in:
parent
038770edc4
commit
96ce227067
2 changed files with 4 additions and 4 deletions
|
@ -606,10 +606,8 @@ class FontPage(Frame):
|
|||
font_size = configured_font[1]
|
||||
font_bold = configured_font[2]=='bold'
|
||||
|
||||
# Set editor font selection list and font_name.
|
||||
fonts = tkFont.families(self)
|
||||
# remove duplicated names and sort
|
||||
fonts = sorted(set(fonts))
|
||||
# Set sorted no-duplicate editor font selection list and font_name.
|
||||
fonts = sorted(set(tkFont.families(self)))
|
||||
for font in fonts:
|
||||
self.fontlist.insert(END, font)
|
||||
self.font_name.set(font_name)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue