From 6adac6032376e12f90f0c480ceded1ff811b9d1e Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Sun, 5 Jun 2016 18:00:28 -0400 Subject: [PATCH] OS X specific fix, to match new mixer TreeModel structure --- gtk2_ardour/mixer_ui.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gtk2_ardour/mixer_ui.cc b/gtk2_ardour/mixer_ui.cc index 2518290cf7..55bfbf8589 100644 --- a/gtk2_ardour/mixer_ui.cc +++ b/gtk2_ardour/mixer_ui.cc @@ -1358,7 +1358,8 @@ Mixer_UI::strip_width_changed () long order; for (order = 0, i = rows.begin(); i != rows.end(); ++i, ++order) { - MixerStrip* strip = (*i)[stripable_columns.strip]; + AxisView* av = (*i)[stripable_columns.strip]; + MixerStrip* strip = dynamic_cast (av); if (strip == 0) { continue;