* 'master' of https://github.com/hellerve/lampshade:
  formatting :)
  ignore DS_Store
This commit is contained in:
2017-06-20 01:32:23 -04:00
2 changed files with 20 additions and 18 deletions

1
.gitignore vendored
View File

@@ -1,3 +1,4 @@
.DS_Store
JuceLibraryCode/
Builds/
*bak

View File

@@ -29,7 +29,8 @@ public:
float minSliderPos,
float maxSliderPos,
const Slider::SliderStyle,
Slider& slider) override {
Slider& slider) override
{
g.setColour(sliderColor);
int nwidth = width+minSliderPos+maxSliderPos;
g.fillRect((int)(x-minSliderPos), y, (int)(nwidth*((sliderPos-minSliderPos)/width)), height);