SomberNight
3 years ago
No known key found for this signature in database
GPG Key ID: B33B5F232C6271E9
1 changed files with
8 additions and
0 deletions
-
electrum/gui/kivy/__init__.py
|
|
@ -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()) |
|
|
|