mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-09 00:04:56 +01:00
OS X specific fix, to match new mixer TreeModel structure
This commit is contained in:
parent
5bbfac2380
commit
6adac60323
1 changed files with 2 additions and 1 deletions
|
|
@ -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<MixerStrip*> (av);
|
||||
|
||||
if (strip == 0) {
|
||||
continue;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue