mbColorLib: Quick-and-dirty fix of flickering issue with Laz trunk under Windows.

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@6267 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
wp_xxyyzz
2018-03-23 14:18:25 +00:00
parent 5e9a89ed42
commit 3f3ac1cae3

View File

@ -66,6 +66,9 @@ begin
inherited Create(AOwner);
// ControlStyle := ControlStyle - [csOpaque];
ParentColor := true;
{$IFDEF WINDOWS}
DoubleBuffered := true;
{$ENDIF}
end;
destructor TmbBasicPicker.Destroy;