Fix typo in calculating secondary cursor color

This commit is contained in:
Paolo Borelli 2011-01-29 12:24:37 +01:00
parent 3f918a8b2d
commit 469f4592d4

View File

@ -4008,7 +4008,7 @@ get_cursor_color (GtkStyleContext *context,
color->red = (fg.red + bg.red) * 0.5 * 65535;
color->green = (fg.green + bg.green) * 0.5 * 65535;
color->blue = (fg.blue + bg.green) * 0.5 * 65535;
color->blue = (fg.blue + bg.blue) * 0.5 * 65535;
}
}