applied a (modified) patch from Pedro Gimeno that fixes bug #110115.

2003-04-07  Michael Natterer  <mitch@gimp.org>

	* app/tools/gimpeditselectiontool.c: applied a (modified) patch
	from Pedro Gimeno that fixes bug #110115.
This commit is contained in:
Michael Natterer 2003-04-07 09:31:28 +00:00 committed by Michael Natterer
parent 290d9f2168
commit 43356fa076
2 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2003-04-07 Michael Natterer <mitch@gimp.org>
* app/tools/gimpeditselectiontool.c: applied a (modified) patch
from Pedro Gimeno that fixes bug #110115.
2003-04-07 Michael Natterer <mitch@gimp.org>
* app/core/gimplayer.c (gimp_layer_apply_mask): call

View File

@ -266,7 +266,7 @@ init_edit_selection (GimpTool *tool,
}
if (edit_type == EDIT_MASK_TRANSLATE)
undo_desc = _("Move Selection Mask");
undo_desc = _("Move Selection");
else if (edit_type == EDIT_LAYER_TRANSLATE)
undo_desc = _("Move Layer");
else
@ -541,7 +541,8 @@ gimp_edit_selection_tool_motion (GimpTool *tool,
edit_select->y1 = 0;
edit_select->edit_type = EDIT_FLOATING_SEL_TRANSLATE;
break;
/* fall through */
case EDIT_FLOATING_SEL_TRANSLATE:
layer = gimp_image_get_active_layer (gdisp->gimage);