Browse Source

adjust dropdown size on MacOS

Johann ELSASS 5 years ago
parent
commit
b8f6f2066e
1 changed files with 1 additions and 0 deletions
  1. 1 0
      bccombobox.pas

+ 1 - 0
bccombobox.pas

@@ -177,6 +177,7 @@ begin
     {$IFDEF WINDOWS}inc(h,6);{$ENDIF}
     FListBox.ItemHeight := h;
     {$IFDEF LINUX}inc(h,6);{$ENDIF}
+    {$IFDEF DARWIN}inc(h,2);{$ENDIF}
     s := TSize.Create(FButton.Width, h*min(Items.Count, FDropDownCount) + 2*FDropDownBorderSize);
     FForm.ClientWidth := s.cx;
     FForm.ClientHeight := s.cy;