kivy: fix menu dismiss

This commit is contained in:
ThomasV 2016-07-28 14:40:00 +02:00
parent 566ed664d5
commit 4a0994be8a
1 changed files with 2 additions and 1 deletions

View File

@ -338,7 +338,8 @@
<ActionOvrButton@ActionButton>
on_release:
Clock.schedule_once(lambda dt: self.parent.parent.dismiss() if self.parent else None, 0.05)
# fixme: the following line was commented out because it does no seem to do what it's intended:
# Clock.schedule_once(lambda dt: self.parent.parent.dismiss() if self.parent else None, 0.05)
Clock.schedule_once(lambda dt: app.popup_dialog(self.name), 0.05)