mirror of
https://github.com/python/cpython.git
synced 2025-09-26 18:29:57 +00:00
Issue 9222 Fix filetypes for open dialog
This commit is contained in:
parent
e61602fc84
commit
5e438570cb
1 changed files with 2 additions and 2 deletions
|
@ -476,8 +476,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