GTK3: Fixed crash on Win64 after recent changes on GTK3 hints.

Seems that on Win64, `FHintControl` is not always a valid `TWinControl`
class instance.
This commit is contained in:
Abou Al Montacir 2023-06-25 20:29:18 +02:00
parent ed0b79bf27
commit 58645a39f4
3 changed files with 5 additions and 3 deletions

View File

@ -991,6 +991,7 @@ type
FAutoHide: Boolean;
FAutoHideTimer: TCustomTimer;
FHideInterval: Integer;
FHintCtrl: TControl;
procedure AdjustBoundsForMonitor(KeepWidth: Boolean = True;
KeepHeight: Boolean = True);
function GetDrawTextFlags: Cardinal;
@ -1040,6 +1041,7 @@ type
property HintRect: TRect read FHintRect write FHintRect;
property HintRectAdjust: TRect read FHintRect write SetHintRectAdjust;
property HintData: Pointer read FHintData write FHintData;
property HintControl: TControl read FHintCtrl write FHintCtrl; experimental;
property AutoHide: Boolean read FAutoHide write SetAutoHide;
property BiDiMode;
property HideInterval: Integer read FHideInterval write SetHideInterval;

View File

@ -850,7 +850,7 @@ begin
Visible := False;
Caption := '';
AutoHide := False;
HintData := Pointer((FHintControl as TWinControl).Handle);
HintControl := FHintControl;
end;
end;

View File

@ -7903,8 +7903,8 @@ var
begin
inherited;
with LCLObject as THintWindow do begin
if Assigned(HintData) then begin
ParentWidget := TGtk3Widget(HintData);
if HintControl is TWinControl then with HintControl as TWinControl do begin
ParentWidget := TGtk3Widget(Handle);
FWidget^.realize;
GetWindow^.set_transient_for(ParentWidget.GetWindow);
end;