Make the brightness slider for the wheel picker continuous.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@29505 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Eric Wasylishen 2010-02-07 22:26:01 +00:00
parent 6a8d987dbc
commit 64756bf553
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2010-02-07 Eric Wasylishen <ewasylishen@gmail.com>
* ColorPickers/GSWheelColorPicker.m: Make the brightness slider
for the wheel picker continuous.
2010-02-07 Eric Wasylishen <ewasylishen@gmail.com>
* Source/GSThemeDrawing.m

View file

@ -330,7 +330,7 @@
[s setAutoresizingMask: NSViewHeightSizable];
[s setCell: [[GSColorSliderCell alloc] init]];
[(GSColorSliderCell *)[s cell] _setColorSliderCellMode: 10];
[s setContinuous: NO];
[s setContinuous: YES];
[s setMinValue: 0.0];
[s setMaxValue: 1.0];
[s setTarget: self];