Fixed #463 (Can't configure color of third-level layer groups)

This commit is contained in:
Matthias Koefferlein 2020-01-05 00:51:06 +01:00
parent d0b2def8a3
commit cea5dbc0b4
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;