ANTI_ERASE had wrong layer mode information (according to the comments).

2001-11-25  Simon Budig  <simon@gimp.org>

        * app/paint-funcs/paint-funcs.c: ANTI_ERASE had wrong
        layer mode information (according to the comments).
        Changed it to something sane. I did test it and no
        errors occurred. I wonder why they did not happen earlier...
This commit is contained in:
Simon Budig 2001-11-25 15:17:33 +00:00 committed by Simon Budig
parent a72e8a7b5b
commit 8a69782e97
2 changed files with 8 additions and 1 deletions

View file

@ -1,3 +1,10 @@
2001-11-25 Simon Budig <simon@gimp.org>
* app/paint-funcs/paint-funcs.c: ANTI_ERASE had wrong
layer mode information (according to the comments).
Changed it to something sane. I did test it and no
errors occurred. I wonder why they did not happen earlier...
2001-11-25 Sven Neumann <sven@gimp.org>
* Made 1.3.1 release.

View file

@ -88,7 +88,7 @@ static const LayerMode layer_modes[] =
{ TRUE, FALSE, TRUE, }, /* COLOR_ERASE_MODE */
{ TRUE, FALSE, TRUE, }, /* ERASE_MODE */
{ TRUE, TRUE, TRUE, }, /* REPLACE_MODE */
{ TRUE, FALSE, TRUE, } /* ANTI_ERASE_MODE */
{ TRUE, TRUE, FALSE, } /* ANTI_ERASE_MODE */
};
typedef void (* LayerModeFunc) (struct apply_layer_mode_struct *);