Issue 308: MTFlippableWidget and flip_to()
Status:  Done
Owner: ----
Closed:  Aug 2010
Reported by jegg...@gmail.com, Aug 16, 2010
I can't use the flip_to() function in MTFlippableWidget. It just does nothing if I use it (no error).

example code:
from pymt import *
widget = MTFlippableWidget()
widget.add_widget(MTLabel(label='Front'), side='front')
widget.add_widget(MTLabel(label='Back'), side='back')

@widget.event
def on_touch_down(touch):
    widget.flip_to("back")

runTouchApp(widget)

Aug 16, 2010
Project Member #1 txprog
Closed via GitHub: http://github.com/tito/pymt/commit/ab73435f2aef00a3d207f38b576aafa17e09c026

flippable: correctly fix the widget by moving private func to private.. and let flip_to() usable by user (fixes  issue 308 )
Status: Done