mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-06 14:47:15 +02:00
Merge branch 'zaher-fixes' into 'main'
make TPopupNotifier.BidiMode as Application.BidiMode See merge request freepascal.org/lazarus/lazarus!83
This commit is contained in:
commit
8d60667e33
@ -261,7 +261,7 @@ begin
|
|||||||
|
|
||||||
finally
|
finally
|
||||||
//erase global variables (dragging stopped)
|
//erase global variables (dragging stopped)
|
||||||
if ADragObjectCopy.AutoFree then
|
if (ADragObjectCopy <>nil) and ADragObjectCopy.AutoFree then
|
||||||
ADragObjectCopy.Free;
|
ADragObjectCopy.Free;
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
|
@ -451,6 +451,8 @@ begin
|
|||||||
inherited Create(AOwner);
|
inherited Create(AOwner);
|
||||||
|
|
||||||
vNotifierForm := TNotifierForm.Create(nil);
|
vNotifierForm := TNotifierForm.Create(nil);
|
||||||
|
if Application <> nil then
|
||||||
|
vNotifierForm.BidiMode := Application.BidiMode;
|
||||||
vNotifierForm.Visible := False;
|
vNotifierForm.Visible := False;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user