FPPopover
FPPopover copied to clipboard
Gradient wrong for White Tint Popover
In FPPopoverView.m
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; }
Which leaves the the title bar uncolored in the popover.
It should be:
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; }
Seems like a minor typo, so I didn't want to do a merge request for it.
Ruben
ops.. thank you! :)
This is still an issue and causes that the arrow changes colours depending the direction that points to :(