mirror of https://gitlab.com/basile.b/dexed.git
fix widget list in application header
This commit is contained in:
parent
e342cb843b
commit
cdc792f601
|
@ -273,6 +273,7 @@ type
|
|||
public
|
||||
constructor create(aOwner: TComponent); override;
|
||||
destructor destroy; override;
|
||||
procedure UpdateDockCaption(Exclude: TControl = nil); override;
|
||||
//
|
||||
procedure openFile(const aFilename: string);
|
||||
procedure docChangeNotify(Sender: TObject; const aIndex: Integer);
|
||||
|
@ -439,6 +440,8 @@ begin
|
|||
DockMaster.MakeDockSite(Self, [akBottom], admrpChild);
|
||||
DockMaster.OnShowOptions := @ShowAnchorDockOptions;
|
||||
DockMaster.HeaderStyle := adhsPoints;
|
||||
DockMaster.HideHeaderCaptionFloatingControl := true;
|
||||
DockMaster.ShowHeaderCaption := false;
|
||||
|
||||
if DockManager is TAnchorDockManager then begin
|
||||
aManager:=TAnchorDockManager(DockManager);
|
||||
|
@ -465,7 +468,6 @@ begin
|
|||
|
||||
DockMaster.GetAnchorSite(fExplWidg).Close;
|
||||
DockMaster.GetAnchorSite(fLibMWidg).Close;
|
||||
|
||||
LoadDocking;
|
||||
end;
|
||||
|
||||
|
@ -595,6 +597,12 @@ begin
|
|||
inherited;
|
||||
end;
|
||||
|
||||
procedure TCEMainForm.UpdateDockCaption(Exclude: TControl = nil);
|
||||
begin
|
||||
// otherwise dockmaster puts the widget list.
|
||||
Caption := 'Coedit';
|
||||
end;
|
||||
|
||||
procedure TCEMainForm.ApplicationProperties1Exception(Sender: TObject;E: Exception);
|
||||
begin
|
||||
if fMesgWidg = nil then
|
||||
|
|
Loading…
Reference in New Issue