Fix incorrect initialization of a color parameter, which make the drawings in black in libedit

This commit is contained in:
jean-pierre charras 2017-02-23 17:55:37 +01:00
parent 2f24b31b28
commit 039910cb21
1 changed files with 1 additions and 1 deletions

View File

@ -191,7 +191,7 @@ struct PART_DRAW_OPTIONS
{
PART_DRAW_OPTIONS def;
def.draw_mode = GR_DEFAULT_DRAWMODE;
def.color = UNSPECIFIED_COLOR;
def.color = COLOR4D::UNSPECIFIED;
def.transform = DefaultTransform;
def.show_pin_text = true;
def.draw_visible_fields = true;