FPPopover icon indicating copy to clipboard operation
FPPopover copied to clipboard

Fix colors error when set popover.tint = FPPopoverWhiteTint;

Open bluedeep opened this issue 11 years ago • 1 comments

Fix colors error when set popover.tint = FPPopoverWhiteTint;

bluedeep avatar Jan 14 '14 02:01 bluedeep

else if(self.tint == FPPopoverWhiteTint)
{
    colors[0] = colors[1] = colors[2] = 1.0;
    colors[3] = colors[4] = colors[5] = 1.0;
    colors[6] = colors[7] = 1.0;
}

instead of

else if(self.tint == FPPopoverWhiteTint)
{
    colors[0] = colors[1] = colors[2] = 1.0;
    colors[0] = colors[1] = colors[2] = 1.0;
    colors[3] = colors[7] = 1.0;
}

in newGradient: method of FPPopoverView

eventomer avatar Apr 17 '14 14:04 eventomer