mirror of https://github.com/GNOME/gimp.git
Issue #5179: fix "Add layer masks" and improve "Edit layer mask".
The `mask` test was broken as it is not multi-layer aware (also it should be negated). The "layers-mask-edit" test was actually already fine because current implementation only allow mask editing when single-selected. Still improve the test to use multi-layer variables. Thanks to Cyril Richard for the original patch proposition from which I derivated the present one.
This commit is contained in:
parent
5302beb947
commit
080ef8a0d8
|
@ -1076,14 +1076,14 @@ layers_actions_update (GimpActionGroup *group,
|
|||
SET_SENSITIVE ("layers-composite-mode-clip-to-layer", n_layers && cm_mutable);
|
||||
SET_SENSITIVE ("layers-composite-mode-intersection", n_layers && cm_mutable);
|
||||
|
||||
SET_SENSITIVE ("layers-mask-add", n_layers > 0 && !fs && !ac && mask);
|
||||
SET_SENSITIVE ("layers-mask-add", n_layers > 0 && !fs && !ac && have_no_masks);
|
||||
SET_SENSITIVE ("layers-mask-add-button", n_layers > 0 && !fs && !ac);
|
||||
SET_SENSITIVE ("layers-mask-add-last-values", n_layers > 0 && !fs && !ac && have_no_masks);
|
||||
|
||||
SET_SENSITIVE ("layers-mask-apply", have_writable && !fs && !ac && have_masks && have_no_groups);
|
||||
SET_SENSITIVE ("layers-mask-delete", n_layers > 0 && !fs && !ac && have_masks);
|
||||
|
||||
SET_SENSITIVE ("layers-mask-edit", layer && !fs && !ac && mask);
|
||||
SET_SENSITIVE ("layers-mask-edit", n_layers == 1 && !fs && !ac && have_masks);
|
||||
SET_SENSITIVE ("layers-mask-show", n_layers > 0 && !fs && !ac && have_masks);
|
||||
SET_SENSITIVE ("layers-mask-disable", n_layers > 0 && !fs && !ac && have_masks);
|
||||
|
||||
|
|
Loading…
Reference in New Issue