Skip to content

Commit

Permalink
Remove an unintentional plus sign
Browse files Browse the repository at this point in the history
Patch by bill-auger, part of his pull request #1.
  • Loading branch information
ib committed Oct 11, 2024
1 parent df6f95f commit b3e2dc8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/preview.c
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ static void theme_pixmap_paint(RrAppearance *a, gint w, gint h)
static guint32 rr_color_pixel(const RrColor *c)
{
return (guint32)((RrColorRed(c) << 24) + (RrColorGreen(c) << 16) +
+ (RrColorBlue(c) << 8) + 0xff);
(RrColorBlue(c) << 8) + 0xff);
}

#if GTK_CHECK_VERSION(3, 0, 0)
Expand Down

0 comments on commit b3e2dc8

Please sign in to comment.