0

I want do a Tabs for my TChromium.
When i opening 2 or more Tabs, they look bad, like this:

enter image description here

Please, help me to fix this problem :(
Also, please, look at this theme - TChromium ChromeTabs Not Working
Thanks

P.s. If it means something, i have this in my USES:

  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs, ExtCtrls, StdCtrls, cefvcl, jpeg, ShellApi, ceflib, Vcl.Buttons,
  Vcl.Menus, Vcl.ComCtrls, clipbrd, System.Actions, Vcl.ActnList, Registry,
  Vcl.ImgList, Vcl.Imaging.pngimage, ChromeTabs,

  {$IFDEF DELPHI2010_UP}
  ChromeTabsGlassForm,
  {$ENDIF}

  ChromeTabsTypes,
  ChromeTabsUtils,
  ChromeTabsControls,
  ChromeTabsClasses;
Community
  • 1
  • 1
Priler
  • 55
  • 10
  • 1
    None of the code you posted seems to be related for the problem you can see. Have you tried to drop a `TChromeTabs` component on a form from a plain new project ? Do you have double buffer of a form enabled ? I've never noticed something like this when using that component. – TLama Jul 17 '13 at 07:58
  • Yes i've tried to create a new project and place TChromeTabs there, but nothing changes. Yes, i have Double Buffer of my Form Enabled. – Priler Jul 17 '13 at 08:02

1 Answers1

3

Set the DoubleBuffered property of your form to False or drop the TChromeTabs component e.g. on a TPanel which will have double buffer disabled.

TLama
  • 71,521
  • 15
  • 192
  • 348