mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 02:04:20 +00:00
* ColorPickers/GSColorSliderCell.m (-drawBarInside:flipped:):
Set alpha to 1 before drawing because the current value could be not 1, and PSsetrgbcolor doesn't set it. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@37235 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
1fdf58e506
commit
7e6fef4418
2 changed files with 8 additions and 0 deletions
|
@ -1,3 +1,9 @@
|
|||
2013-10-15 Eric Wasylishen <ewasylishen@gmail.com>
|
||||
|
||||
* ColorPickers/GSColorSliderCell.m (-drawBarInside:flipped:):
|
||||
Set alpha to 1 before drawing because the current value could be
|
||||
not 1, and PSsetrgbcolor doesn't set it.
|
||||
|
||||
2013-10-15 Eric Wasylishen <ewasylishen@gmail.com>
|
||||
|
||||
* Headers/Additions/GNUstepGUI/GSTheme.h: Add -tabViewContentRectForBounds:
|
||||
|
|
|
@ -105,6 +105,8 @@
|
|||
{
|
||||
float i, f;
|
||||
|
||||
PSsetalpha(1);
|
||||
|
||||
if (_isVertical)
|
||||
{
|
||||
for (i = 0; i < r.size.height; i += 1)
|
||||
|
|
Loading…
Reference in a new issue