1
0

kivy: remove redundant declaration

This commit is contained in:
ThomasV
2020-12-08 10:44:59 +01:00
parent 95b08e9961
commit 8bdd44edcb
2 changed files with 1 additions and 4 deletions

View File

@@ -81,9 +81,6 @@ class EventsDialog(Factory.Popup):
def on_press(self, instance):
pass
def close(self):
self.dismiss()
class SelectionDialog(EventsDialog):

View File

@@ -641,7 +641,7 @@ class WizardDialog(EventsDialog):
def on_release(self, button):
self._on_release = True
self.close()
self.dismiss()
if not button:
self.wizard.terminate(aborted=True)
return