[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:
Nikolay 2015-02-12 19:02:52 +02:00
parent 9b11eb81df
commit 956d85db10

View file

@ -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 ***/