Reputation: 55
I want do a Tabs for my TChromium.
When i opening 2 or more Tabs, they look bad, like this:
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;
Upvotes: 0
Views: 244
Reputation: 76693
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.
Upvotes: 3