jarvisteach / appJar

Simple Tkinter GUIs in Python
http://appJar.info
Other
615 stars 67 forks source link

Ability to easily raise/lower widgets #607

Closed jarvisteach closed 4 years ago

jarvisteach commented 4 years ago

It would be useful to implement a feature to easily raise/lower widgets in the grid, when multiple widgets are in the same grid cell:

widget.lift()          # move to the top of the stack
widget.lift(another)   # move to just above another widget
widget.lower()         # move to the bottom of the stack
widget.lower(another)  # move to just below another widget

Originally mentioned in issue #603

jarvisteach commented 4 years ago

In next release