mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
The lower() and tkraise() methods were calling the Canvas widget
wrongly. Fixed this. This closes SF bug #412682.
This commit is contained in:
parent
8875c86a12
commit
40f3c7fdf0
1 changed files with 2 additions and 2 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue