Cross style is propagated down groups properly now.

This commit is contained in:
Matthias Koefferlein 2017-09-20 23:00:37 +02:00
parent d64a427180
commit 1d29a00bb9
1 changed files with 1 additions and 1 deletions

View File

@ -303,7 +303,7 @@ LayerProperties::merge_visual (const LayerProperties *d) const
m_valid_real = m_valid && (!d || d->m_valid_real);
m_visible_real = m_visible && (!d || d->m_visible_real);
m_xfill_real = m_xfill && (!d || d->m_xfill_real);
m_xfill_real = m_xfill || (d && d->m_xfill_real);
m_transparent_real = m_transparent || (d && d->m_transparent_real);
m_marked_real = m_marked || (d && d->m_marked_real);