merlinvn / controlp5

Automatically exported from code.google.com/p/controlp5
0 stars 0 forks source link

Slider2D.setLabelVisible() has no effect (always visible). Knob.setLabelVisible() has no effect (always invisible). #24

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. ControlP5 controlP5 = new ControlP5(this);
2. controlP5.addSlider2D("slider2D", 0.0, 1.0, 0.0, 1.0, 0.5, 0.5, 50, 50, 100, 
100).setLabelVisible(false);
3. controlP5.addKnob("knob", 0, 1, .5, 100, 100,50).setLabelVisible(true);

What is the expected output? What do you see instead?

Expected output: Slider2D with no visible label, and a Knob with a visible 
label.

Instead: Slider2D with a visible label, and Knob with no visible label.

What version of the product are you using? On what operating system?

controlP5_0.5.4

Please provide any additional information below.

Original issue reported on code.google.com by karl.hi...@gmail.com on 12 Nov 2011 at 12:39