Fix login dialogs not showing the correct title

This commit is contained in:
len
2016-03-11 16:16:56 +01:00
parent ed636d5e2f
commit a87c65872c
3 changed files with 3 additions and 4 deletions

View File

@ -33,7 +33,7 @@ class MangaSyncLoginDialog : LoginDialogPreference() {
}
override fun setCredentialsOnView(view: View) = with(view) {
title.text = getString(R.string.login_title, sync.name)
dialog_title.text = getString(R.string.login_title, sync.name)
username.setText(preferences.getMangaSyncUsername(sync))
password.setText(preferences.getMangaSyncPassword(sync))
}

View File

@ -33,7 +33,7 @@ class SourceLoginDialog : LoginDialogPreference() {
}
override fun setCredentialsOnView(view: View) = with(view) {
title.text = getString(R.string.login_title, source.visibleName)
dialog_title.text = getString(R.string.login_title, source.visibleName)
username.setText(preferences.getSourceUsername(source))
password.setText(preferences.getSourcePassword(source))
}