mirror of https://github.com/GNOME/gimp.git
for an opaque buffer, initialize the brush mask with 255 instead of 0.
2008-05-14 Sven Neumann <sven@gimp.org> * app/core/gimpbrushclipboard.c (gimp_brush_clipboard_buffer_changed): for an opaque buffer, initialize the brush mask with 255 instead of 0. Fixes bug #532886. svn path=/trunk/; revision=25661
This commit is contained in:
parent
e312aee2d8
commit
241bd2980f
|
@ -1,3 +1,10 @@
|
||||||
|
2008-05-14 Sven Neumann <sven@gimp.org>
|
||||||
|
|
||||||
|
* app/core/gimpbrushclipboard.c
|
||||||
|
(gimp_brush_clipboard_buffer_changed): fixed handling of opaque
|
||||||
|
buffers and initialize the brush mask with 255 instead of 0.
|
||||||
|
Fixes bug #532886.
|
||||||
|
|
||||||
2008-05-14 Sven Neumann <sven@gimp.org>
|
2008-05-14 Sven Neumann <sven@gimp.org>
|
||||||
|
|
||||||
* plug-ins/gradient-flare/gradient-flare.c
|
* plug-ins/gradient-flare/gradient-flare.c
|
||||||
|
|
|
@ -231,7 +231,12 @@ gimp_brush_clipboard_buffer_changed (Gimp *gimp,
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
temp_buf_data_clear (brush->mask);
|
PixelRegion maskPR;
|
||||||
|
guchar opaque = OPAQUE_OPACITY;
|
||||||
|
|
||||||
|
pixel_region_init_temp_buf (&maskPR, brush->mask,
|
||||||
|
0, 0, width, height);
|
||||||
|
color_region (&maskPR, &opaque);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* copy the color channels into the brush's pixmap */
|
/* copy the color channels into the brush's pixmap */
|
||||||
|
|
Loading…
Reference in New Issue