1
0

kivy: implement ElectrumGui.stop

This commit is contained in:
SomberNight
2021-11-05 20:35:28 +01:00
parent ca9b48e2d6
commit ed0dd6eb22

View File

@@ -69,3 +69,11 @@ class ElectrumGui(BaseElectrumGui, Logger):
gui_object=self,
)
w.run()
def stop(self) -> None:
from kivy.app import App
from kivy.clock import Clock
app = App.get_running_app()
if not app:
return
Clock.schedule_once(lambda dt: app.stop())