mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-18 04:49:43 +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
|
||||
//erase global variables (dragging stopped)
|
||||
if ADragObjectCopy.AutoFree then
|
||||
if (ADragObjectCopy <>nil) and ADragObjectCopy.AutoFree then
|
||||
ADragObjectCopy.Free;
|
||||
end;
|
||||
end;
|
||||
|
@ -451,6 +451,8 @@ begin
|
||||
inherited Create(AOwner);
|
||||
|
||||
vNotifierForm := TNotifierForm.Create(nil);
|
||||
if Application <> nil then
|
||||
vNotifierForm.BidiMode := Application.BidiMode;
|
||||
vNotifierForm.Visible := False;
|
||||
end;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user