[consider merging] Bugfix: view was not refreshed if properties changed and property selectors were present

This commit is contained in:
Matthias Koefferlein 2024-12-22 15:17:10 +01:00
parent f095374455
commit 19e44e071c
1 changed files with 4 additions and 1 deletions

View File

@ -2349,7 +2349,7 @@ LayoutViewBase::signal_layer_properties_changed ()
m_layer_properties_lists [i]->attach_view (this, i);
}
// schedule a redraw request - since the layer views might not have changed, this is necessary
// schedule a redraw request - since the layer views might have changed, this is necessary
redraw_later ();
}
@ -2364,6 +2364,9 @@ LayoutViewBase::signal_prop_ids_changed ()
for (unsigned int i = 0; i < layer_lists (); ++i) {
m_layer_properties_lists [i]->attach_view (this, i);
}
// schedule a redraw request - since the layer views might have changed, this is necessary
redraw_later ();
}
void