Gtk3: update should update only gtklayout of custom control.

This commit is contained in:
zeljan1 2025-03-26 10:04:37 +01:00
parent d750a3d027
commit 9ba82ba4e0

View File

@ -855,6 +855,7 @@ type
function CreateWidget(const {%H-}Params: TCreateParams):PGtkWidget; override;
function EatArrowKeys(const {%H-}AKey: Word): Boolean; override;
public
procedure Update(ARect: PRect); override;
procedure DoBeforeLCLPaint; override;
procedure InitializeWidget; override;
function getViewport: PGtkViewport; override;
@ -8806,6 +8807,22 @@ begin
Result := False;
end;
procedure TGtk3CustomControl.Update(ARect: PRect);
begin
if IsWidgetOK then
begin
if (ARect <> nil) then
begin
if (aRect^.Width > 0) and (ARect^.Height > 0) then
begin
with ARect^ do
GetContainerWidget^.queue_draw_area(Left, Top, Right - Left, Bottom - Top);
end;
end else
GetContainerWidget^.queue_draw;
end;
end;
procedure TGtk3CustomControl.DoBeforeLCLPaint;
var
DC: TGtk3DeviceContext;