mirror of
https://github.com/python/cpython.git
synced 2025-10-03 05:35:59 +00:00
Issue 9222 Fix filetypes for open dialog
Merged from 86702
This commit is contained in:
parent
55d935a145
commit
277896ad4e
1 changed files with 2 additions and 2 deletions
|
@ -521,8 +521,8 @@ class IOBinding:
|
||||||
savedialog = None
|
savedialog = None
|
||||||
|
|
||||||
filetypes = [
|
filetypes = [
|
||||||
("Python and text files", "*.py *.pyw *.txt", "TEXT"),
|
("Python files", "*.py *.pyw", "TEXT"),
|
||||||
("All text files", "*", "TEXT"),
|
("Text files", "*.txt", "TEXT"),
|
||||||
("All files", "*"),
|
("All files", "*"),
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue