oops, forgot this one...

This commit is contained in:
Michael Natterer 2003-07-14 16:45:39 +00:00
parent 5f62f63cee
commit 4a30a71c43
1 changed files with 8 additions and 4 deletions

View File

@ -158,7 +158,9 @@ gimp_paint_options_gui (GimpToolOptions *tool_options)
}
/* the gradient preview */
if (tool_options->tool_info->tool_type == GIMP_TYPE_BLEND_TOOL)
if (tool_options->tool_info->tool_type == GIMP_TYPE_PAINTBRUSH_TOOL ||
tool_options->tool_info->tool_type == GIMP_TYPE_PENCIL_TOOL ||
tool_options->tool_info->tool_type == GIMP_TYPE_BLEND_TOOL)
{
button = gimp_viewable_button_new (context->gimp->gradient_factory->container,
context,
@ -336,7 +338,8 @@ fade_options_gui (GimpGradientOptions *gradient,
config = G_OBJECT (paint_options);
if (tool_type == GIMP_TYPE_PAINTBRUSH_TOOL)
if (tool_type == GIMP_TYPE_PAINTBRUSH_TOOL ||
tool_type == GIMP_TYPE_PENCIL_TOOL)
{
frame = gtk_frame_new (NULL);
@ -391,8 +394,9 @@ gradient_options_gui (GimpGradientOptions *gradient,
config = G_OBJECT (paint_options);
if (tool_type == GIMP_TYPE_PAINTBRUSH_TOOL)
{
if (tool_type == GIMP_TYPE_PAINTBRUSH_TOOL ||
tool_type == GIMP_TYPE_PENCIL_TOOL)
{
frame = gtk_frame_new (NULL);
table = gtk_table_new (2, 3, FALSE);