Browse Source

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

pull/3/merge
jean-pierre charras 9 years ago
parent
commit
039910cb21
  1. 2
      eeschema/class_libentry.h

2
eeschema/class_libentry.h

@ -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;

Loading…
Cancel
Save