mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-31 09:21:39 +00:00
kivy: use softinput_mode='pan' in wizard
This commit is contained in:
parent
08e5aecee2
commit
6ba43637f5
1 changed files with 3 additions and 0 deletions
|
@ -251,6 +251,7 @@ class WizardDialog(EventsDialog):
|
|||
Window.bind(size=_trigger_size_dialog,
|
||||
rotation=_trigger_size_dialog)
|
||||
_trigger_size_dialog()
|
||||
Window.softinput_mode = 'pan'
|
||||
|
||||
def _size_dialog(self, dt):
|
||||
app = App.get_running_app()
|
||||
|
@ -275,6 +276,8 @@ class WizardDialog(EventsDialog):
|
|||
if app.wallet is None and self._on_release is not None:
|
||||
print "on dismiss: stopping app"
|
||||
app.stop()
|
||||
else:
|
||||
Window.softinput_mode = 'below_target'
|
||||
|
||||
|
||||
class CreateRestoreDialog(WizardDialog):
|
||||
|
|
Loading…
Add table
Reference in a new issue