13
0

Fix renaming export timespans #8577

The location name is only pushed to the backend during
ExportTimespanSelector::add_range_to_selection() which in turn
is only called when timespans are updated.
This commit is contained in:
Robin Gareus 2021-02-16 18:11:24 +01:00
parent d05572e14a
commit b44508c174
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04

View File

@ -375,6 +375,7 @@ ExportTimespanSelector::update_range_name (std::string const & path, std::string
Gtk::TreeStore::iterator it = range_list->get_iter (path);
it->get_value (range_cols.location)->set_name (new_text);
update_timespans ();
CriticalSelectionChanged();
}