commit 4640bf7fcbf70a9359b8ec67ca5ca06748571a91
parent 3d2736b014e1d6e3905380d616b705e338248c9c
Author: ThomasV <thomasv@electrum.org>
Date: Tue, 1 Dec 2020 09:13:20 +0100
kivy: remove dead code (installwizard waiting_dialog)
Diffstat:
1 file changed, 0 insertions(+), 29 deletions(-)
diff --git a/electrum/gui/kivy/uix/dialogs/installwizard.py b/electrum/gui/kivy/uix/dialogs/installwizard.py
@@ -1073,35 +1073,6 @@ class InstallWizard(BaseWizard, Widget):
"""overriden by main_window"""
pass
- def waiting_dialog(self, task, msg, on_finished=None):
- '''Perform a blocking task in the background by running the passed
- method in a thread.
- '''
- def target():
- # run your threaded function
- try:
- task()
- except Exception as err:
- self.logger.exception('')
- self.show_error(str(err))
- # on completion hide message
- Clock.schedule_once(lambda dt: app.info_bubble.hide(now=True), -1)
- if on_finished:
- def protected_on_finished():
- try:
- on_finished()
- except Exception as e:
- self.logger.exception('')
- self.show_error(str(e))
- Clock.schedule_once(lambda dt: protected_on_finished(), -1)
-
- app = App.get_running_app()
- app.show_info_bubble(
- text=msg, icon='atlas://electrum/gui/kivy/theming/light/important',
- pos=Window.center, width='200sp', arrow_pos=None, modal=True)
- t = threading.Thread(target = target)
- t.start()
-
def terminate(self, *, storage=None, db=None, aborted=False):
if storage is None and not aborted:
storage, db = self.create_storage(self.path)