Only set the list position once in SettingFragment.

captchafix
Florens Douwes 11 years ago
parent 6e28c7c6b9
commit 41b0584b52
  1. 4
      Clover/app/src/main/java/org/floens/chan/ui/fragment/SettingsFragment.java

@ -37,6 +37,7 @@ import org.floens.chan.utils.ThemeHelper;
public class SettingsFragment extends PreferenceFragment {
private int clickCount = 0;
private boolean argumentsRead = false;
private Preference developerPreference;
@ -126,7 +127,8 @@ public class SettingsFragment extends PreferenceFragment {
super.onStart();
final Bundle args = getArguments();
if (args != null) {
if (args != null && !argumentsRead) {
argumentsRead = true;
getListView().setSelectionFromTop(args.getInt("pos", 0), args.getInt("off", 0));
}
}

Loading…
Cancel
Save