mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-31 02:47:43 +01:00
Fix PluginListChanged() emission order
This is only relevant when manually scanning plugins, initiated from the UI thread. Call back (in same thread) needs to happen after detecting ambiguities and refilling the info lists.
This commit is contained in:
parent
92bfb8e1df
commit
cebfaf4d94
1 changed files with 1 additions and 1 deletions
|
|
@ -566,7 +566,6 @@ PluginManager::refresh (bool cache_only)
|
|||
}
|
||||
|
||||
BootMessage (_("Plugin Scan Complete..."));
|
||||
PluginListChanged (); /* EMIT SIGNAL */
|
||||
PluginScanMessage(X_("closeme"), "", false);
|
||||
_cancel_scan = false;
|
||||
|
||||
|
|
@ -609,6 +608,7 @@ PluginManager::refresh (bool cache_only)
|
|||
detect_type_ambiguities (all_plugs);
|
||||
|
||||
save_scanlog ();
|
||||
PluginListChanged (); /* EMIT SIGNAL */
|
||||
}
|
||||
|
||||
void
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue