mirror of
https://github.com/cookiengineer/audacity
synced 2025-11-08 22:23:59 +01:00
Fix for bug #967
This commit is contained in:
6
src/effects/VST/VSTEffect.cpp
Normal file → Executable file
6
src/effects/VST/VSTEffect.cpp
Normal file → Executable file
@@ -486,7 +486,11 @@ bool VSTEffectsModule::RegisterPlugin(PluginManagerInterface & pm, const wxStrin
|
|||||||
VSTSubProcess *proc = new VSTSubProcess();
|
VSTSubProcess *proc = new VSTSubProcess();
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
wxExecute(cmd, wxEXEC_SYNC | wxEXEC_NODISABLE, proc);
|
int flags = wxEXEC_SYNC | wxEXEC_NODISABLE;
|
||||||
|
#if defined(__WXMSW__)
|
||||||
|
flags += wxEXEC_NOHIDE;
|
||||||
|
#endif
|
||||||
|
wxExecute(cmd, flags, proc);
|
||||||
}
|
}
|
||||||
catch (...)
|
catch (...)
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user