mirror of https://github.com/GNOME/gimp.git
don't copy the first row onto itself.
2004-06-12 Sven Neumann <sven@gimp.org> * app/widgets/gimpcolorbar.c (gimp_color_bar_expose): don't copy the first row onto itself.
This commit is contained in:
parent
d76b2183aa
commit
2fd178c624
|
@ -1,3 +1,8 @@
|
||||||
|
2004-06-12 Sven Neumann <sven@gimp.org>
|
||||||
|
|
||||||
|
* app/widgets/gimpcolorbar.c (gimp_color_bar_expose): don't copy
|
||||||
|
the first row onto itself.
|
||||||
|
|
||||||
2004-06-12 Simon Budig <simon@gimp.org>
|
2004-06-12 Simon Budig <simon@gimp.org>
|
||||||
|
|
||||||
* app/tools/gimptransformtool.c: Make Enter/Return apply the
|
* app/tools/gimptransformtool.c: Make Enter/Return apply the
|
||||||
|
|
|
@ -183,7 +183,7 @@ gimp_color_bar_expose (GtkWidget *widget,
|
||||||
b[2] = src[2];
|
b[2] = src[2];
|
||||||
}
|
}
|
||||||
|
|
||||||
for (i = 0; i < height; i++)
|
for (i = 1; i < height; i++)
|
||||||
memcpy (buf + i * width * 3, buf, width * 3);
|
memcpy (buf + i * width * 3, buf, width * 3);
|
||||||
|
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in New Issue