mirror of https://github.com/GNOME/gimp.git
added a missing break that broke gimp_image_find_next_guide(). Fixes bug
2003-05-11 Sven Neumann <sven@gimp.org> * tools/pdbgen/pdb/guides.pdb: added a missing break that broke gimp_image_find_next_guide(). Fixes bug #112717. * app/pdb/guides_cmds.c: regenerated.
This commit is contained in:
parent
ebb56bc5f8
commit
0c30ec3cf7
|
@ -1,3 +1,10 @@
|
|||
2003-05-11 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* tools/pdbgen/pdb/guides.pdb: added a missing break that broke
|
||||
gimp_image_find_next_guide(). Fixes bug #112717.
|
||||
|
||||
* app/pdb/guides_cmds.c: regenerated.
|
||||
|
||||
2003-05-09 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* app/widgets/gimpselectioneditor.[ch]: added a "Stroke Selection"
|
||||
|
|
|
@ -319,6 +319,7 @@ image_find_next_guide_invoker (Gimp *gimp,
|
|||
else
|
||||
{
|
||||
next_guide = g->guide_ID;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -167,6 +167,7 @@ HELP
|
|||
else
|
||||
{
|
||||
next_guide = g->guide_ID;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue