From 15e6792be9c1762eb503587c411fff3a61ecdf73 Mon Sep 17 00:00:00 2001 From: Steve Daulton Date: Mon, 26 Mar 2018 21:14:26 +0100 Subject: [PATCH] Fix bug 929 --- src/effects/Effect.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/effects/Effect.cpp b/src/effects/Effect.cpp index c8ec85b31..61c8020ea 100644 --- a/src/effects/Effect.cpp +++ b/src/effects/Effect.cpp @@ -2882,7 +2882,7 @@ EffectUIHost::EffectUIHost(wxWindow *parent, #endif SetName( effect->GetTranslatedName() ); - SetExtraStyle(wxWS_EX_VALIDATE_RECURSIVELY); + SetExtraStyle(GetExtraStyle() | wxWS_EX_VALIDATE_RECURSIVELY); mParent = parent; mEffect = effect;