summaryrefslogtreecommitdiffstats
path: root/Lib/lib-tk/Canvas.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1996-07-21 02:19:32 (GMT)
committerGuido van Rossum <guido@python.org>1996-07-21 02:19:32 (GMT)
commit421bb0e389ad9c0c3353dfd89fd8ef4e4756d1cb (patch)
tree7da6d75b580d0fb13736cd655019d3a62902294f /Lib/lib-tk/Canvas.py
parent6d6a15bab20b27f739d5c9a44903a4e420ce3af7 (diff)
downloadcpython-421bb0e389ad9c0c3353dfd89fd8ef4e4756d1cb.zip
cpython-421bb0e389ad9c0c3353dfd89fd8ef4e4756d1cb.tar.gz
cpython-421bb0e389ad9c0c3353dfd89fd8ef4e4756d1cb.tar.bz2
fix canvas bind commands
Diffstat (limited to 'Lib/lib-tk/Canvas.py')
-rw-r--r--Lib/lib-tk/Canvas.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/lib-tk/Canvas.py b/Lib/lib-tk/Canvas.py
index 1e4a5c8..cba22d1 100644
--- a/Lib/lib-tk/Canvas.py
+++ b/Lib/lib-tk/Canvas.py
@@ -52,7 +52,7 @@ class CanvasItem:
x1, y1, x2, y2 = self.canvas.bbox(self.id)
return (x1, y1), (x2, y2)
def bind(self, sequence=None, command=None):
- return self.canvas.bind(self.id, sequence, command)
+ return self.canvas.tag_bind(self.id, sequence, command)
def config(self, cnf=None):
return self.canvas.itemconfig(self.id, cnf)
def coords(self, pts = ()):