Skip to content

Commit

Permalink
Fix NumericSlider initializaton.
Browse files Browse the repository at this point in the history
  • Loading branch information
Pavel Kovalenko committed Oct 19, 2014
1 parent 058bbd3 commit 6151bb2
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,11 @@ public NumericSlider()
public decimal Value
{
get { return numSpinner.Value; }
set { numSpinner.Value = value; }
set
{
numSpinner.Value = value;
SliderPos = numSpinner.Value;
}
}

public decimal Minimum
Expand Down

0 comments on commit 6151bb2

Please sign in to comment.