Skip to content

Commit

Permalink
Merge pull request #121 from daviad/master
Browse files Browse the repository at this point in the history
White color fix
  • Loading branch information
alvises committed Mar 1, 2016
2 parents 7792693 + 050d12a commit 972a6ed
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions FPPopoverView.m
Original file line number Diff line number Diff line change
Expand Up @@ -337,9 +337,13 @@ -(CGGradientRef)newGradient
}
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;

colors[0] = colors[1] = colors[2] = 1.0;
colors[0] = colors[1] = colors[2] = 1.0;
colors[3] = colors[7] = 1.0;
colors[3] = colors[4] = colors[5] = 1.0;
colors[6] = colors[7] = 1.0;
}


Expand Down

0 comments on commit 972a6ed

Please sign in to comment.