Merge pull request #470 from KLayout/issue-463

Issue 463
This commit is contained in:
Matthias Köfferlein 2020-01-05 01:02:32 +01:00 committed by GitHub
commit b012e90def
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

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