mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-05 09:18:02 +02:00
VirtualTreeView: Fix header paint issue in gtk2.
This commit is contained in:
parent
7e274a48e7
commit
8b9b6cd85d
@ -294,6 +294,12 @@ var // Clipboard format IDs used in OLE drag'n drop and clipboard transfers.
|
||||
|
||||
UtilityImageSize: Integer = cUtilityImageSize;
|
||||
|
||||
{$ifdef gtk}
|
||||
// Workaround LCL bug 8553
|
||||
var
|
||||
pf32bit: TPixelFormat = pfDevice;
|
||||
{$endif}
|
||||
|
||||
type
|
||||
// The exception used by the trees.
|
||||
EVirtualTreeError = class(Exception);
|
||||
|
@ -7,7 +7,7 @@ object DrawTreeForm: TDrawTreeForm
|
||||
Caption = 'DrawTreeForm'
|
||||
ClientHeight = 453
|
||||
ClientWidth = 710
|
||||
LCLVersion = '3.99.0.0'
|
||||
LCLVersion = '4.99.0.0'
|
||||
OnCreate = FormCreate
|
||||
object Label7: TLabel
|
||||
Left = 8
|
||||
|
@ -387,8 +387,9 @@ begin
|
||||
Data.Properties := Data.Properties + ', 64K colors';
|
||||
pf24bit:
|
||||
Data.Properties := Data.Properties + ', 16M colors';
|
||||
pf32bit:
|
||||
Data.Properties := Data.Properties + ', 16M+ colors';
|
||||
else
|
||||
if Picture.Bitmap.PixelFormat = pf32bit then
|
||||
Data.Properties := Data.Properties + ', 16M+ colors';
|
||||
end;
|
||||
if Cardinal(Data.Image.Height) + 4 > TLazVirtualDrawTree(Sender).DefaultNodeHeight then
|
||||
Sender.NodeHeight[Node] := Data.Image.Height + 4;
|
||||
|
Loading…
Reference in New Issue
Block a user