From f097be6c404eacd2f118a7aa9a7b2d54504b27fe Mon Sep 17 00:00:00 2001 From: Lukas W Date: Sat, 8 Apr 2017 17:14:22 +0200 Subject: [PATCH] RemoteVst: Fix flickering when moving window --- plugins/vst_base/RemoteVstPlugin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/vst_base/RemoteVstPlugin.cpp b/plugins/vst_base/RemoteVstPlugin.cpp index c0d4b9b92..15be00606 100644 --- a/plugins/vst_base/RemoteVstPlugin.cpp +++ b/plugins/vst_base/RemoteVstPlugin.cpp @@ -648,7 +648,7 @@ void RemoteVstPlugin::initEditor() wc.hInstance = hInst; wc.hIcon = LoadIcon( NULL, IDI_APPLICATION ); wc.hCursor = LoadCursor( NULL, IDC_ARROW ); - wc.hbrBackground = (HBRUSH) GetStockObject( BLACK_BRUSH ); + wc.hbrBackground = NULL; wc.lpszMenuName = NULL; wc.lpszClassName = "LVSL";