mirror of https://github.com/GNOME/gimp.git
enable scaling for smudge tool (gimp_smudge_motion): correct comment.
2009-03-09 Alexia Death <alexiadeath@gmail.com> * app/paint/gimpsmudge.c (gimp_smudge_class_init): enable scaling for smudge tool (gimp_smudge_motion): correct comment. svn path=/trunk/; revision=28131
This commit is contained in:
parent
eb22d0784b
commit
cdc3e5b448
|
@ -1,3 +1,9 @@
|
|||
2009-03-09 Alexia Death <alexiadeath@gmail.com>
|
||||
|
||||
* app/paint/gimpsmudge.c
|
||||
(gimp_smudge_class_init): enable scaling for smudge tool
|
||||
(gimp_smudge_motion): correct comment.
|
||||
|
||||
2009-03-08 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* tools/pdbgen/pdb/image.pdb (image_add_channel): corrected
|
||||
|
|
|
@ -89,7 +89,7 @@ gimp_smudge_class_init (GimpSmudgeClass *klass)
|
|||
|
||||
paint_core_class->paint = gimp_smudge_paint;
|
||||
|
||||
brush_core_class->handles_transforming_brush = FALSE;
|
||||
brush_core_class->handles_transforming_brush = TRUE;
|
||||
}
|
||||
|
||||
static void
|
||||
|
@ -249,7 +249,7 @@ gimp_smudge_motion (GimpPaintCore *paint_core,
|
|||
if (opacity == 0.0)
|
||||
return;
|
||||
|
||||
/* Get the paint area (Smudge won't scale!) */
|
||||
/* Get the paint area */
|
||||
area = gimp_paint_core_get_paint_area (paint_core, drawable, paint_options);
|
||||
if (! area)
|
||||
return;
|
||||
|
|
Loading…
Reference in New Issue