13
0

NO-OP: whitespace and comments

This commit is contained in:
Robin Gareus 2019-06-09 19:41:23 +02:00
parent 43fe5c0487
commit 9390f17f36
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04
2 changed files with 7 additions and 4 deletions

View File

@ -1155,5 +1155,5 @@ ArdourMeter::meter_clear_pattern_cache(int which) {
++j;
}
}
RedrawMetrics();
RedrawMetrics(); /* EMIT SIGNAL */
}

View File

@ -473,7 +473,9 @@ MeterStrip::meter_configuration_changed (ChanCount c)
set_tick_bar(_tick_bar);
on_theme_changed();
if (old_has_midi != _has_midi) MetricChanged();
if (old_has_midi != _has_midi) {
MetricChanged(); /* EMIT SIGNAL */
}
else ConfigurationChanged();
}
@ -581,7 +583,8 @@ MeterStrip::on_size_allocate (Gtk::Allocation& a)
if (need_relayout) {
queue_resize();
MetricChanged(); // force re-layout, parent on_scroll(), queue_resize()
/* force re-layout, parent on_scroll(), queue_resize() */
MetricChanged(); /* EMIT SIGNAL */
}
}
@ -941,7 +944,7 @@ void
MeterStrip::meter_type_changed (MeterType type)
{
update_background (type);
MetricChanged();
MetricChanged(); /* EMIT SIGNAL */
}
void