From: Guido van Rossum Date: Tue, 10 Apr 2001 21:13:06 +0000 (+0000) Subject: The lower() and tkraise() methods were calling the Canvas widget X-Git-Tag: v2.1c1~110 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=40f3c7fdf0e16dab993315d8531d9b0078aac796;p=python The lower() and tkraise() methods were calling the Canvas widget wrongly. Fixed this. This closes SF bug #412682. --- diff --git a/Lib/lib-tk/Canvas.py b/Lib/lib-tk/Canvas.py index ced84a91e7..ed4ba348cc 100644 --- a/Lib/lib-tk/Canvas.py +++ b/Lib/lib-tk/Canvas.py @@ -170,11 +170,11 @@ class Group: def config(self, cnf={}, **kw): return self.canvas.itemconfigure(self.tag, _cnfmerge((cnf,kw))) def lower(self, belowThis=None): - self._do('tag_lower', belowThis) + self._do('lower', belowThis) def move(self, xAmount, yAmount): self._do('move', xAmount, yAmount) def tkraise(self, aboveThis=None): - self._do('tag_raise', aboveThis) + self._do('raise', aboveThis) lift = tkraise def scale(self, xOrigin, yOrigin, xScale, yScale): self._do('scale', xOrigin, yOrigin, xScale, yScale)