mirror of https://gitlab.com/basile.b/dexed.git
fix header widget always hidden
This commit is contained in:
parent
ae884aec4e
commit
911aee8a21
|
@ -278,6 +278,7 @@ type
|
|||
procedure openFile(const aFilename: string);
|
||||
procedure docChangeNotify(Sender: TObject; const aIndex: Integer);
|
||||
procedure docFocusedNotify(Sender: TObject; const aIndex: Integer);
|
||||
function expandSymbolicString(const symString: string): string;
|
||||
//
|
||||
property WidgetList: TCEWidgetList read fWidgList;
|
||||
property MessageWidget: TCEMessagesWidget read fMesgWidg;
|
||||
|
@ -441,7 +442,6 @@ begin
|
|||
DockMaster.OnShowOptions := @ShowAnchorDockOptions;
|
||||
DockMaster.HeaderStyle := adhsPoints;
|
||||
DockMaster.HideHeaderCaptionFloatingControl := true;
|
||||
DockMaster.ShowHeaderCaption := false;
|
||||
|
||||
if DockManager is TAnchorDockManager then begin
|
||||
aManager:=TAnchorDockManager(DockManager);
|
||||
|
@ -1746,6 +1746,12 @@ begin
|
|||
end;
|
||||
{$ENDREGION}
|
||||
|
||||
function TCEMainForm.expandSymbolicString(const symString: string): string;
|
||||
begin
|
||||
// expands some symbolic constant, e.g: project path, current file name, etc.
|
||||
result := '';
|
||||
end;
|
||||
|
||||
procedure PlugDispatchToHost(aPlugin: TCEPlugin; opCode: LongWord; data0: Integer; data1, data2: Pointer); cdecl;
|
||||
var
|
||||
ctxt: NativeUint;
|
||||
|
|
Loading…
Reference in New Issue