keep the context colors always opaque. Fixes bug #120912.

2003-08-28  Sven Neumann  <sven@gimp.org>

	* app/core/gimpcontext.c (gimp_context_real_set_foreground)
	(gimp_context_real_set_background): keep the context colors always
	opaque. Fixes bug #120912.
This commit is contained in:
Sven Neumann 2003-08-28 16:39:43 +00:00 committed by Sven Neumann
parent 08e8072f22
commit 6bcd478dd4
2 changed files with 8 additions and 0 deletions

View File

@ -1,3 +1,9 @@
2003-08-28 Sven Neumann <sven@gimp.org>
* app/core/gimpcontext.c (gimp_context_real_set_foreground)
(gimp_context_real_set_background): keep the context colors always
opaque. Fixes bug #120912.
2003-08-28 Sven Neumann <sven@gimp.org>
* tools/pdbgen/pdb/image.pdb: removed a historical enum constraint

View File

@ -1957,6 +1957,7 @@ gimp_context_real_set_foreground (GimpContext *context,
return;
context->foreground = *color;
gimp_rgb_set_alpha (&context->foreground, GIMP_OPACITY_OPAQUE);
g_object_notify (G_OBJECT (context), "foreground");
gimp_context_foreground_changed (context);
@ -2006,6 +2007,7 @@ gimp_context_real_set_background (GimpContext *context,
return;
context->background = *color;
gimp_rgb_set_alpha (&context->background, GIMP_OPACITY_OPAQUE);
g_object_notify (G_OBJECT (context), "background");
gimp_context_background_changed (context);