Skip to content

Commit

Permalink
Merge pull request #186 from dbarr33/FixWrapWheelBug
Browse files Browse the repository at this point in the history
Fix wrap wheel bug when setting min value
  • Loading branch information
ShawnLin013 authored Dec 8, 2020
2 parents ede2e61 + 4675de4 commit d2de414
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1627,7 +1627,8 @@ public void setMinValue(int minValue) {
if (mMinValue > mValue) {
mValue = mMinValue;
}
setWrapSelectorWheel(isWrappingAllowed());

updateWrapSelectorWheel();
initializeSelectorWheelIndices();
updateInputTextView();
tryComputeMaxWidth();
Expand Down

0 comments on commit d2de414

Please sign in to comment.