Skip to content
Closed
Prev Previous commit
Next Next commit
RemoteVst: Fix flickering when moving window
  • Loading branch information
lukas-w committed Apr 8, 2017
commit ad982cd35263fe8d9cf47f84742fea41fbada880
2 changes: 1 addition & 1 deletion plugins/vst_base/RemoteVstPlugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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";

Expand Down