From 46f92d2ebab2830d69277121cffef690679ed268 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Wed, 11 Oct 1995 17:41:00 +0000 Subject: add Listbox.activate() --- Lib/lib-tk/Tkinter.py | 2 ++ Lib/tkinter/Tkinter.py | 2 ++ 2 files changed, 4 insertions(+) diff --git a/Lib/lib-tk/Tkinter.py b/Lib/lib-tk/Tkinter.py index 1703395..aace39a 100644 --- a/Lib/lib-tk/Tkinter.py +++ b/Lib/lib-tk/Tkinter.py @@ -1031,6 +1031,8 @@ class Listbox(Widget): self['selectmode'] = 'single' else: self.tk.call('tk_listboxSingleSelect', self._w) + def activate(self, index): + self.tk.call(self._w, 'activate', index) def curselection(self): return self.tk.splitlist(self.tk.call( self._w, 'curselection')) diff --git a/Lib/tkinter/Tkinter.py b/Lib/tkinter/Tkinter.py index 1703395..aace39a 100755 --- a/Lib/tkinter/Tkinter.py +++ b/Lib/tkinter/Tkinter.py @@ -1031,6 +1031,8 @@ class Listbox(Widget): self['selectmode'] = 'single' else: self.tk.call('tk_listboxSingleSelect', self._w) + def activate(self, index): + self.tk.call(self._w, 'activate', index) def curselection(self): return self.tk.splitlist(self.tk.call( self._w, 'curselection')) -- cgit v0.12