mirror of https://github.com/GNOME/gimp.git
Applied slightly modified patch from Sven. When the quickmask has a
2004-03-20 Simon Budig <simon@gimp.org> * app/core/gimpimage-qmask.c: Applied slightly modified patch from Sven. When the quickmask has a floating selection, anchor it before loading the selection and deleting the qmask channel. Fixes bug #137170.
This commit is contained in:
parent
63177de7c4
commit
9d616282c3
10
ChangeLog
10
ChangeLog
|
@ -1,3 +1,11 @@
|
||||||
|
2004-03-20 Simon Budig <simon@gimp.org>
|
||||||
|
|
||||||
|
* app/core/gimpimage-qmask.c: Applied slightly modified patch
|
||||||
|
from Sven. When the quickmask has a floating selection, anchor
|
||||||
|
it before loading the selection and deleting the qmask channel.
|
||||||
|
|
||||||
|
Fixes bug #137170.
|
||||||
|
|
||||||
2004-03-20 Simon Budig <simon@gimp.org>
|
2004-03-20 Simon Budig <simon@gimp.org>
|
||||||
|
|
||||||
* app/gui/select-commands.[ch]: new callbacks to convert the
|
* app/gui/select-commands.[ch]: new callbacks to convert the
|
||||||
|
@ -6,6 +14,8 @@
|
||||||
* app/gui/image-menu.c: hook it into the menu. Default shortcut
|
* app/gui/image-menu.c: hook it into the menu. Default shortcut
|
||||||
is Shift+V.
|
is Shift+V.
|
||||||
|
|
||||||
|
Fixes bug #137754.
|
||||||
|
|
||||||
2004-03-20 Sven Neumann <sven@gimp.org>
|
2004-03-20 Sven Neumann <sven@gimp.org>
|
||||||
|
|
||||||
* app/text/gimptextlayer.c (gimp_text_layer_set): use the same
|
* app/text/gimptextlayer.c (gimp_text_layer_set): use the same
|
||||||
|
|
|
@ -30,6 +30,7 @@
|
||||||
#include "gimpimage-qmask.h"
|
#include "gimpimage-qmask.h"
|
||||||
#include "gimpimage-undo.h"
|
#include "gimpimage-undo.h"
|
||||||
#include "gimpimage-undo-push.h"
|
#include "gimpimage-undo-push.h"
|
||||||
|
#include "gimplayer.h"
|
||||||
#include "gimplayer-floating-sel.h"
|
#include "gimplayer-floating-sel.h"
|
||||||
#include "gimpselection.h"
|
#include "gimpselection.h"
|
||||||
|
|
||||||
|
@ -110,12 +111,17 @@ gimp_image_set_qmask_state (GimpImage *gimage,
|
||||||
{
|
{
|
||||||
if (mask)
|
if (mask)
|
||||||
{
|
{
|
||||||
|
GimpLayer *floating_sel = gimp_image_floating_sel (gimage);
|
||||||
|
|
||||||
gimp_image_undo_group_start (gimage, GIMP_UNDO_GROUP_IMAGE_QMASK,
|
gimp_image_undo_group_start (gimage, GIMP_UNDO_GROUP_IMAGE_QMASK,
|
||||||
_("Disable QuickMask"));
|
_("Disable QuickMask"));
|
||||||
|
|
||||||
if (gimage->qmask_inverted)
|
if (gimage->qmask_inverted)
|
||||||
gimp_channel_invert (mask, TRUE);
|
gimp_channel_invert (mask, TRUE);
|
||||||
|
|
||||||
|
if (floating_sel && floating_sel->fs.drawable == GIMP_DRAWABLE (mask))
|
||||||
|
floating_sel_anchor (floating_sel);
|
||||||
|
|
||||||
gimp_selection_load (gimp_image_get_mask (gimage), mask);
|
gimp_selection_load (gimp_image_get_mask (gimage), mask);
|
||||||
gimp_image_remove_channel (gimage, mask);
|
gimp_image_remove_channel (gimage, mask);
|
||||||
|
|
||||||
|
|
|
@ -30,6 +30,7 @@
|
||||||
#include "gimpimage-qmask.h"
|
#include "gimpimage-qmask.h"
|
||||||
#include "gimpimage-undo.h"
|
#include "gimpimage-undo.h"
|
||||||
#include "gimpimage-undo-push.h"
|
#include "gimpimage-undo-push.h"
|
||||||
|
#include "gimplayer.h"
|
||||||
#include "gimplayer-floating-sel.h"
|
#include "gimplayer-floating-sel.h"
|
||||||
#include "gimpselection.h"
|
#include "gimpselection.h"
|
||||||
|
|
||||||
|
@ -110,12 +111,17 @@ gimp_image_set_qmask_state (GimpImage *gimage,
|
||||||
{
|
{
|
||||||
if (mask)
|
if (mask)
|
||||||
{
|
{
|
||||||
|
GimpLayer *floating_sel = gimp_image_floating_sel (gimage);
|
||||||
|
|
||||||
gimp_image_undo_group_start (gimage, GIMP_UNDO_GROUP_IMAGE_QMASK,
|
gimp_image_undo_group_start (gimage, GIMP_UNDO_GROUP_IMAGE_QMASK,
|
||||||
_("Disable QuickMask"));
|
_("Disable QuickMask"));
|
||||||
|
|
||||||
if (gimage->qmask_inverted)
|
if (gimage->qmask_inverted)
|
||||||
gimp_channel_invert (mask, TRUE);
|
gimp_channel_invert (mask, TRUE);
|
||||||
|
|
||||||
|
if (floating_sel && floating_sel->fs.drawable == GIMP_DRAWABLE (mask))
|
||||||
|
floating_sel_anchor (floating_sel);
|
||||||
|
|
||||||
gimp_selection_load (gimp_image_get_mask (gimage), mask);
|
gimp_selection_load (gimp_image_get_mask (gimage), mask);
|
||||||
gimp_image_remove_channel (gimage, mask);
|
gimp_image_remove_channel (gimage, mask);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue