Set custom track color and corner radius

- Issue MatterHackers/MCCentral#3142
Consider reducing significance of tuning adjustment sliders
This commit is contained in:
John Lewin 2018-04-15 13:28:06 -07:00
parent 5c56df6be3
commit 734933f13e
2 changed files with 7 additions and 2 deletions

View file

@ -119,7 +119,7 @@ namespace MatterHackers.MatterControl
// now do the thumb
RectangleDouble thumbBounds = sliderAttachedTo.GetThumbHitBounds();
RoundedRect thumbOutside = new RoundedRect(thumbBounds, 0);
graphics2D.Render(thumbOutside, ColorF.GetTweenColor(ThumbColor.ToColorF(), ColorF.Black.ToColorF(), .2).ToColor());
graphics2D.Render(thumbOutside, this.ThumbColor); // ColorF.GetTweenColor(ThumbColor.ToColorF(), ColorF.Black.ToColorF(), .2).ToColor());
}
}