Skip to content

Commit

Permalink
fix wrap wheel bug
Browse files Browse the repository at this point in the history
  • Loading branch information
dbarr33 committed Dec 8, 2020
1 parent ede2e61 commit a06d4e1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1627,7 +1627,7 @@ public void setMinValue(int minValue) {
if (mMinValue > mValue) {
mValue = mMinValue;
}
setWrapSelectorWheel(isWrappingAllowed());
setWrapSelectorWheel(isWrappingAllowed() && mWrapSelectorWheelPreferred);
initializeSelectorWheelIndices();
updateInputTextView();
tryComputeMaxWidth();
Expand Down

0 comments on commit a06d4e1

Please sign in to comment.