Skip to content

Commit

Permalink
Fixed #463 (Can't configure color of third-level layer groups)
Browse files Browse the repository at this point in the history
  • Loading branch information
klayoutmatthias committed Jan 4, 2020
1 parent d0b2def commit cea5dbc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/laybasic/laybasic/layLayerProperties.cc
Expand Up @@ -275,12 +275,12 @@ LayerProperties::merge_visual (const LayerProperties *d) const
if (!d || !d->has_frame_color (true)) {
m_frame_color_real = m_frame_color;
} else {
m_frame_color_real = d->m_frame_color;
m_frame_color_real = d->m_frame_color_real;
}
if (!d || !d->has_fill_color (true)) {
m_fill_color_real = m_fill_color;
} else {
m_fill_color_real = d->m_fill_color;
m_fill_color_real = d->m_fill_color_real;
}

m_frame_brightness_real = m_frame_brightness;
Expand Down

0 comments on commit cea5dbc

Please sign in to comment.