IDE: anchor editor: update when becoming visible again, bug #26558

git-svn-id: trunk@46022 -
This commit is contained in:
mattias 2014-08-06 17:13:22 +00:00
parent fe227ded7f
commit 822e9eaeee

View File

@ -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;