mirror of https://github.com/GNOME/gimp.git
fixed a stupid typo.
* libgimpwidgets/gimppreviewarea.c: fixed a stupid typo.
This commit is contained in:
parent
7f075c87d8
commit
ee2e6eac86
|
@ -1,3 +1,7 @@
|
|||
2004-09-08 DindinX <david@dindinx.org>
|
||||
|
||||
* libgimpwidgets/gimppreviewarea.c: fixed a stupid typo.
|
||||
|
||||
2004-09-08 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* libgimpwidgets/gimppreviewarea.c (gimp_preview_area_fill):
|
||||
|
|
|
@ -772,7 +772,7 @@ gimp_preview_area_blend (GimpPreviewArea *area,
|
|||
|
||||
for (col = x; col < x + width; col++, s1 += 2, s2 += 2, d+= 3)
|
||||
{
|
||||
guchar inter[1];
|
||||
guchar inter[2];
|
||||
|
||||
inter[1] = ((s1[1] << 8) + (s2[1] - s1[1]) * opacity) >> 8;
|
||||
|
||||
|
@ -1232,7 +1232,7 @@ gimp_preview_area_mask (GimpPreviewArea *area,
|
|||
|
||||
default:
|
||||
{
|
||||
guchar inter[1];
|
||||
guchar inter[2];
|
||||
|
||||
inter[1] = ((s1[1] << 8) + (s2[1] - s1[1]) * m[0]) >> 8;
|
||||
|
||||
|
|
Loading…
Reference in New Issue