1
0

kivy: separate base wizard class from gui

This commit is contained in:
ThomasV
2016-06-16 19:25:44 +02:00
parent 362e4be6f0
commit 9182392b55
5 changed files with 850 additions and 829 deletions

View File

@@ -67,7 +67,6 @@ class EventsDialog(Factory.Popup):
def __init__(self, **kwargs):
super(EventsDialog, self).__init__(**kwargs)
self._on_release = kwargs.get('on_release')
def on_release(self, instance):
pass
@@ -76,7 +75,6 @@ class EventsDialog(Factory.Popup):
pass
def close(self):
self._on_release = None
self.dismiss()