1
0
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:
Leland Lucius
2015-05-23 23:38:51 -05:00
parent f28daa9baa
commit bed441d651

6
src/effects/VST/VSTEffect.cpp Normal file → Executable file
View File

@@ -486,7 +486,11 @@ bool VSTEffectsModule::RegisterPlugin(PluginManagerInterface & pm, const wxStrin
VSTSubProcess *proc = new VSTSubProcess();
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 (...)
{