use more inspiring initial values.

2003-07-04  Sven Neumann  <sven@gimp.org>

	* app/base/colorize.c (colorize_init): use more inspiring initial
	values.
This commit is contained in:
Sven Neumann 2003-07-04 11:13:39 +00:00 committed by Sven Neumann
parent 8021dc31b0
commit 98bbc5297c
2 changed files with 8 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2003-07-04 Sven Neumann <sven@gimp.org>
* app/base/colorize.c (colorize_init): use more inspiring initial
values.
2003-07-04 Sven Neumann <sven@gimp.org>
* plug-ins/gdyntext/*: removed from CVS.

View File

@ -36,9 +36,9 @@ colorize_init (Colorize *colorize)
g_return_if_fail (colorize != NULL);
colorize->hue = 0.0;
colorize->lightness = 100.0;
colorize->saturation = 100.0;
colorize->hue = 360.0 / 2;
colorize->lightness = 100.0 / 2;
colorize->saturation = 100.0 / 2;
for (i = 0; i < 256; i ++)
{