Skip to content

Commit

Permalink
fixed the slider value issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Ciprian Filipas committed Mar 28, 2012
1 parent 123366f commit 10898b9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ public int Value
{
set
{
if (value < 0)
if (0 <= value)
{
if (value <= mMaxValue && value >= mMinValue)
{
Expand Down

0 comments on commit 10898b9

Please sign in to comment.