summaryrefslogtreecommitdiffstats
path: root/Lib/lib-tk
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1995-09-01 20:36:47 (GMT)
committerGuido van Rossum <guido@python.org>1995-09-01 20:36:47 (GMT)
commitb9e39c8861b010f5cedbec9c37f4106de66bcb72 (patch)
tree50b1180152346197ef7f1861d81ff7945fa6c3dd /Lib/lib-tk
parentbf4d8f9d876d422ebf760998544e0eb8b72aa524 (diff)
downloadcpython-b9e39c8861b010f5cedbec9c37f4106de66bcb72.zip
cpython-b9e39c8861b010f5cedbec9c37f4106de66bcb72.tar.gz
cpython-b9e39c8861b010f5cedbec9c37f4106de66bcb72.tar.bz2
Filter button should set selection's directory, too
Diffstat (limited to 'Lib/lib-tk')
-rw-r--r--Lib/lib-tk/FileDialog.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/Lib/lib-tk/FileDialog.py b/Lib/lib-tk/FileDialog.py
index fb2ccd7..a2e56ea 100644
--- a/Lib/lib-tk/FileDialog.py
+++ b/Lib/lib-tk/FileDialog.py
@@ -77,9 +77,9 @@ class FileDialog:
def go(self, directory=os.curdir, pattern="*", default=""):
self.directory = directory
self.set_filter(directory, pattern)
+ self.filter_command()
self.set_selection(default)
self.selection.focus_set()
- self.filter_command()
self.top.grab_set()
try:
self.master.mainloop()
@@ -136,6 +136,9 @@ class FileDialog:
self.files.delete(0, END)
for name in matchingfiles:
self.files.insert(END, name)
+ head, tail = os.path.split(self.selection.get())
+ if tail == os.curdir: tail = ''
+ self.set_selection(tail)
def get_filter(self):
filter = self.filter.get()