mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-15 19:16:40 +01:00
Update export config on stem export select tracks/busses/none
Call update_config() after selecting/deselecting all tracks/busses so that the warning about 'No channels have been selected' is shown/hidden appropriately.
This commit is contained in:
parent
ca9c7b169d
commit
88b0e0cd0b
1 changed files with 3 additions and 0 deletions
|
|
@ -611,6 +611,7 @@ TrackExportChannelSelector::select_tracks ()
|
|||
row[track_cols.selected] = true;
|
||||
}
|
||||
}
|
||||
update_config();
|
||||
}
|
||||
|
||||
void
|
||||
|
|
@ -624,6 +625,7 @@ TrackExportChannelSelector::select_busses ()
|
|||
row[track_cols.selected] = true;
|
||||
}
|
||||
}
|
||||
update_config();
|
||||
}
|
||||
|
||||
void
|
||||
|
|
@ -633,6 +635,7 @@ TrackExportChannelSelector::select_none ()
|
|||
Gtk::TreeModel::Row row = *it;
|
||||
row[track_cols.selected] = false;
|
||||
}
|
||||
update_config();
|
||||
}
|
||||
|
||||
void
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue