From: Guido van Rossum Date: Fri, 3 Jan 1997 23:39:26 +0000 (+0000) Subject: Fix the following bug: X-Git-Tag: v1.5a1~583 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7fc0bf82477bb3fee0e2caaba6fa031866602cd6;p=python Fix the following bug: - When dragging the mouse in either listbox, the *first* entry clicked on is selected rather than the last (but the last one is highlighted). This is done by changing the bindtags so that our binding is executed after the default binding (which sets the 'active' index to the last item selected), and using 'active' instead of 'anchor' as the index to ask for. --- diff --git a/Lib/lib-tk/FileDialog.py b/Lib/lib-tk/FileDialog.py index 76271af5d5..fe98b6f344 100644 --- a/Lib/lib-tk/FileDialog.py +++ b/Lib/lib-tk/FileDialog.py @@ -11,8 +11,6 @@ Classes: from Tkinter import * from Dialog import Dialog -ANCHOR = 'anchor' - import os import fnmatch @@ -73,6 +71,8 @@ class FileDialog: self.files = Listbox(self.midframe, exportselection=0, yscrollcommand=(self.filesbar, 'set')) self.files.pack(side=RIGHT, expand=YES, fill=BOTH) + btags = self.files.bindtags() + self.files.bindtags(btags[1:] + btags[:1]) self.files.bind('', self.files_select_event) self.files.bind('', self.files_double_event) self.filesbar.config(command=(self.files, 'yview')) @@ -83,6 +83,8 @@ class FileDialog: yscrollcommand=(self.dirsbar, 'set')) self.dirs.pack(side=LEFT, expand=YES, fill=BOTH) self.dirsbar.config(command=(self.dirs, 'yview')) + btags = self.dirs.bindtags() + self.dirs.bindtags(btags[1:] + btags[:1]) self.dirs.bind('', self.dirs_select_event) self.dirs.bind('', self.dirs_double_event) @@ -133,7 +135,7 @@ class FileDialog: def dirs_select_event(self, event): dir, pat = self.get_filter() - subdir = self.dirs.get(ANCHOR) + subdir = self.dirs.get('active') dir = os.path.normpath(os.path.join(self.directory, subdir)) self.set_filter(dir, pat) @@ -141,7 +143,7 @@ class FileDialog: self.ok_command() def files_select_event(self, event): - file = self.files.get(ANCHOR) + file = self.files.get('active') self.set_selection(file) def ok_event(self, event): diff --git a/Lib/tkinter/FileDialog.py b/Lib/tkinter/FileDialog.py index 76271af5d5..fe98b6f344 100755 --- a/Lib/tkinter/FileDialog.py +++ b/Lib/tkinter/FileDialog.py @@ -11,8 +11,6 @@ Classes: from Tkinter import * from Dialog import Dialog -ANCHOR = 'anchor' - import os import fnmatch @@ -73,6 +71,8 @@ class FileDialog: self.files = Listbox(self.midframe, exportselection=0, yscrollcommand=(self.filesbar, 'set')) self.files.pack(side=RIGHT, expand=YES, fill=BOTH) + btags = self.files.bindtags() + self.files.bindtags(btags[1:] + btags[:1]) self.files.bind('', self.files_select_event) self.files.bind('', self.files_double_event) self.filesbar.config(command=(self.files, 'yview')) @@ -83,6 +83,8 @@ class FileDialog: yscrollcommand=(self.dirsbar, 'set')) self.dirs.pack(side=LEFT, expand=YES, fill=BOTH) self.dirsbar.config(command=(self.dirs, 'yview')) + btags = self.dirs.bindtags() + self.dirs.bindtags(btags[1:] + btags[:1]) self.dirs.bind('', self.dirs_select_event) self.dirs.bind('', self.dirs_double_event) @@ -133,7 +135,7 @@ class FileDialog: def dirs_select_event(self, event): dir, pat = self.get_filter() - subdir = self.dirs.get(ANCHOR) + subdir = self.dirs.get('active') dir = os.path.normpath(os.path.join(self.directory, subdir)) self.set_filter(dir, pat) @@ -141,7 +143,7 @@ class FileDialog: self.ok_command() def files_select_event(self, event): - file = self.files.get(ANCHOR) + file = self.files.get('active') self.set_selection(file) def ok_event(self, event):