1
0
Fork 0
mirror of https://github.com/syncthing/syncthing-android.git synced 2025-01-10 12:05:53 +00:00

Disabled number picker wrapping.

This commit is contained in:
George Venios 2015-09-07 01:31:14 +01:00
parent 7e8eff2729
commit 98d015c0b7

View file

@ -68,6 +68,7 @@ public class KeepVersionsDialogFragment extends DialogFragment {
picker.setMinValue(0);
picker.setMaxValue(5);
picker.setValue(mValue);
picker.setWrapSelectorWheel(false);
return picker;
}