Skip to content
Snippets Groups Projects
Commit c99bbbd6 authored by Kamal Bramwell's avatar Kamal Bramwell
Browse files

Implemented obscured password field on backup password

parent efd1c551
No related branches found
No related tags found
No related merge requests found
......@@ -106,7 +106,7 @@ class BackupDetailFragment : Fragment(), Injectable {
}
private fun showSetPasswordDialog(dialogUI: TextInputDialogUI) {
TextInputDialog.newInstance(dialogUI)
TextInputDialog.newInstance(dialogUI, true)
.show(childFragmentManager, null)
ui.onPasswordPromptHandled()
}
......
......@@ -108,7 +108,7 @@ class BackupSettingsFragment : Fragment(), Injectable {
}
private fun showSetPasswordDialog(dialogUI: TextInputDialogUI) {
TextInputDialog.newInstance(dialogUI)
TextInputDialog.newInstance(dialogUI, true)
.show(childFragmentManager, null)
ui.onPasswordPromptHandled()
}
......
......@@ -110,7 +110,7 @@ class RestoreDetailFragment : Fragment(), Injectable {
}
private fun showSetPasswordDialog(dialogUI: TextInputDialogUI) {
TextInputDialog.newInstance(dialogUI)
TextInputDialog.newInstance(dialogUI, true)
.show(childFragmentManager, null)
ui.onPasswordPromptHandled()
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment