syedowaisali / crystal-range-seekbar

537 stars 164 forks source link

setMinStartValue and setMaxStartValue do not work properly for CrystalRangeSeekbar #31

Closed bgenchel closed 7 years ago

bgenchel commented 7 years ago

I've seen this issue more than a few times, but I thought I would share my experience with it. It really doesn't seem like this methods work correctly at all, or at least the setMaxStartValue method doesn't work at all.

rsb.setMinStartValue(valOne).apply(); rsb.setMaxStartValue(valTwo).apply();

sets both cursors to min value (0, or whatever that is);

rsb.setMinStartValue(valOne).setMaxStartValue(valTwo).apply();

sets both cursors to valOne

rsb.setMaxStartValue(valTwo).setMinStartValue(valOne).apply();

sets both cursors to valOne

rsb.setMaxStartValue(valOne).setMinStartValue(valTwo).apply();

sets both cursors to valTwo

bgenchel commented 7 years ago

Issue is fixed in 1.1.3!