| 2447 | } |
| 2448 | |
| 2449 | void |
| 2450 | LayoutViewBase::do_update_layer_sources () |
| 2451 | { |
| 2452 | // inform the layer list observers that they need to recompute the property selectors |
| 2453 | layer_list_changed_event (1); |
| 2454 | |
| 2455 | // recompute the source |
| 2456 | // TODO: this is a side effect of this method - provide a special method for this purpose |
| 2457 | for (unsigned int i = 0; i < layer_lists (); ++i) { |
| 2458 | m_layer_properties_lists [i]->attach_view (this, i); |
| 2459 | } |
| 2460 | |
| 2461 | // schedule a redraw request - since the layer views might have changed, this is necessary |
| 2462 | redraw_later (); |
| 2463 | } |
| 2464 | |
| 2465 | void |
| 2466 | LayoutViewBase::signal_plugin_enabled_changed () |
nothing calls this directly
no test coverage detected