mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-27 00:47:43 +01:00
[Summary] Bug fix #46375 "Error message still remains in export dialog after pressing "select all" button"
[Feature reviewed] MKosharnyy [Reviewed] VKamyshniy
This commit is contained in:
parent
9b11eb81df
commit
956d85db10
1 changed files with 6 additions and 0 deletions
|
|
@ -334,9 +334,15 @@ void
|
|||
WavesExportTimespanSelector::on_selection_all_buttons (WavesButton* button)
|
||||
{
|
||||
bool selected = (button == &_select_all_button);
|
||||
state->timespans->clear();
|
||||
|
||||
for (Gtk::ListStore::Children::iterator it = range_list->children().begin(); it != range_list->children().end(); ++it) {
|
||||
it->set_value (range_cols.selected, selected);
|
||||
if (selected)
|
||||
add_range_to_selection (it->get_value (range_cols.location));
|
||||
}
|
||||
|
||||
CriticalSelectionChanged();
|
||||
}
|
||||
|
||||
/*** WavesExportTimespanSelectorSingle ***/
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue