diff options
author | Guido van Rossum <guido@python.org> | 1996-09-11 14:25:41 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1996-09-11 14:25:41 (GMT) |
commit | 6e8ec59eb41212787981c68ccc8f5463f937efc8 (patch) | |
tree | 722909d96835b7be7218869589448e5182dbd103 /Lib | |
parent | 6b7a7e9fe0f0ff1157a41000595938c407af7ddb (diff) | |
download | cpython-6e8ec59eb41212787981c68ccc8f5463f937efc8.zip cpython-6e8ec59eb41212787981c68ccc8f5463f937efc8.tar.gz cpython-6e8ec59eb41212787981c68ccc8f5463f937efc8.tar.bz2 |
Implement lower by calling lower, not lift.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/lib-tk/Tkinter.py | 2 | ||||
-rwxr-xr-x | Lib/tkinter/Tkinter.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Lib/lib-tk/Tkinter.py b/Lib/lib-tk/Tkinter.py index edda34a..83a3503 100644 --- a/Lib/lib-tk/Tkinter.py +++ b/Lib/lib-tk/Tkinter.py @@ -248,7 +248,7 @@ class Misc: def send(self, interp, cmd, *args): return apply(self.tk.call, ('send', interp, cmd) + args) def lower(self, belowThis=None): - self.tk.call('lift', self._w, belowThis) + self.tk.call('lower', self._w, belowThis) def tkraise(self, aboveThis=None): self.tk.call('raise', self._w, aboveThis) lift = tkraise diff --git a/Lib/tkinter/Tkinter.py b/Lib/tkinter/Tkinter.py index edda34a..83a3503 100755 --- a/Lib/tkinter/Tkinter.py +++ b/Lib/tkinter/Tkinter.py @@ -248,7 +248,7 @@ class Misc: def send(self, interp, cmd, *args): return apply(self.tk.call, ('send', interp, cmd) + args) def lower(self, belowThis=None): - self.tk.call('lift', self._w, belowThis) + self.tk.call('lower', self._w, belowThis) def tkraise(self, aboveThis=None): self.tk.call('raise', self._w, aboveThis) lift = tkraise |