app: swap enum/ui order of dst-atop and src-in

It's a more logical order.  Hopefully, we're going to rename them
soon, so it'll all make more sense.
This commit is contained in:
Ell
2017-05-06 18:23:20 -04:00
parent 1e6acbd4e1
commit 13e2153d33

View File

@ -43,8 +43,8 @@ typedef enum
GIMP_LAYER_COMPOSITE_AUTO, /*< desc="Auto" >*/
GIMP_LAYER_COMPOSITE_SRC_OVER, /*< desc="Source over" >*/
GIMP_LAYER_COMPOSITE_SRC_ATOP, /*< desc="Source atop" >*/
GIMP_LAYER_COMPOSITE_SRC_IN, /*< desc="Source in" >*/
GIMP_LAYER_COMPOSITE_DST_ATOP /*< desc="Destination atop" >*/
GIMP_LAYER_COMPOSITE_DST_ATOP, /*< desc="Destination atop" >*/
GIMP_LAYER_COMPOSITE_SRC_IN /*< desc="Source in" >*/
} GimpLayerCompositeMode;