only scroll to bottom of Setting when toggling Expert Mode

closes #1502
This commit is contained in:
Hans-Christoph Steiner 2018-07-11 16:56:55 +02:00
parent edb9fcd044
commit 54a080f7f7

View File

@ -295,6 +295,8 @@ public class PreferencesFragment extends PreferenceFragment
if (TextUtils.equals(Preferences.PREF_EXPERT, pref.getDependency())) {
pref.setVisible(isExpertMode);
}
}
if (changing) {
RecyclerView recyclerView = getListView();
recyclerView.smoothScrollToPosition(recyclerView.getAdapter().getItemCount() - 1);
}