From 9905652d5c04ff6023ea487ff6682fc878b43e53 Mon Sep 17 00:00:00 2001 From: Tony Kirkland Date: Sun, 22 May 2016 11:17:04 -0400 Subject: [PATCH] Bug 1279: change VST host window parameters to prevent app freeze --- src/effects/VST/VSTControl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/effects/VST/VSTControl.h b/src/effects/VST/VSTControl.h index b499add3b..9720ebb75 100644 --- a/src/effects/VST/VSTControl.h +++ b/src/effects/VST/VSTControl.h @@ -41,7 +41,7 @@ public: mParent = parent; mLink = link; - if (!wxControl::Create(parent, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxNO_BORDER, wxDefaultValidator, wxEmptyString)) + if (!wxControl::Create(parent, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxNO_BORDER | wxTAB_TRAVERSAL, wxDefaultValidator, wxEmptyString)) { return false; }