Fix for error in r61159: the new gpencil_new_layer_col in UserDef is supposed to be a 4 float RGBA color, but has only 3 floats. This was overwriting tweak_threshold in UserDef and breaking transform

operators ...
This commit is contained in:
Lukas Toenne 2013-11-06 21:08:16 +00:00
parent f392ebd77e
commit 232c97fdeb

@ -474,7 +474,7 @@ typedef struct UserDef {
struct ColorBand coba_weight; /* from texture.h */
float sculpt_paint_overlay_col[3];
float gpencil_new_layer_col[3]; /* default color for newly created Grease Pencil layers */
float gpencil_new_layer_col[4]; /* default color for newly created Grease Pencil layers */
short tweak_threshold;
short pad3;