mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-16 11:46:25 +01:00
Fix thinko in export preset selector code
git-svn-id: svn://localhost/ardour2/branches/3.0@4280 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
fbc248d70c
commit
ed28f2e714
1 changed files with 1 additions and 5 deletions
|
|
@ -114,15 +114,11 @@ ExportPresetSelector::update_selection ()
|
||||||
entry.get_entry()->set_text (text);
|
entry.get_entry()->set_text (text);
|
||||||
select_connection.block (false);
|
select_connection.block (false);
|
||||||
|
|
||||||
} else { // Text has been edited
|
} else { // Text has been edited, this should not make any changes in the profile manager
|
||||||
if (previous && !text.compare (previous->name())) {
|
if (previous && !text.compare (previous->name())) {
|
||||||
|
|
||||||
current = previous;
|
current = previous;
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
current.reset ();
|
current.reset ();
|
||||||
profile_manager->load_preset (current);
|
|
||||||
CriticalSelectionChanged();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue