mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 07:58:07 +02:00
IDE: anchor editor: update when becoming visible again, bug #26558
git-svn-id: trunk@46022 -
This commit is contained in:
parent
fe227ded7f
commit
822e9eaeee
@ -156,6 +156,7 @@ type
|
||||
var SelectedControlCount: integer);
|
||||
protected
|
||||
procedure KeyUp(var Key: Word; Shift: TShiftState); override;
|
||||
procedure UpdateShowing; override;
|
||||
public
|
||||
destructor Destroy; override;
|
||||
class function ControlToStr(AControl: TControl): string;
|
||||
@ -680,6 +681,13 @@ begin
|
||||
ExecuteIDEShortCut(Self,Key,Shift,nil);
|
||||
end;
|
||||
|
||||
procedure TAnchorDesigner.UpdateShowing;
|
||||
begin
|
||||
inherited UpdateShowing;
|
||||
if IsVisible and fNeedUpdate then
|
||||
Refresh;
|
||||
end;
|
||||
|
||||
procedure TAnchorDesigner.FillComboBoxWithSiblings(AComboBox: TComboBox);
|
||||
var
|
||||
sl: TStringList;
|
||||
|
Loading…
Reference in New Issue
Block a user