Browse Source

Merge pull request #6395 from akshayaurora/patch-1

Re-size the wizard before next frame is displayed.
master
ThomasV 5 years ago committed by GitHub
parent
commit
8703d10d65
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      electrum/gui/kivy/uix/dialogs/installwizard.py

2
electrum/gui/kivy/uix/dialogs/installwizard.py

@ -590,7 +590,7 @@ class WizardDialog(EventsDialog):
self.app = App.get_running_app()
self.run_next = kwargs['run_next']
self._trigger_size_dialog = Clock.create_trigger(self._size_dialog)
self._trigger_size_dialog = Clock.create_trigger(self._size_dialog, -1)
# note: everything bound here needs to be unbound as otherwise the
# objects will be kept around and keep receiving the callbacks
Window.bind(size=self._trigger_size_dialog,

Loading…
Cancel
Save