OS X specific fix, to match new mixer TreeModel structure

This commit is contained in:
Paul Davis 2016-06-05 18:00:28 -04:00
parent 5bbfac2380
commit 6adac60323

View file

@ -1358,7 +1358,8 @@ Mixer_UI::strip_width_changed ()
long order; long order;
for (order = 0, i = rows.begin(); i != rows.end(); ++i, ++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<MixerStrip*> (av);
if (strip == 0) { if (strip == 0) {
continue; continue;