mirror of https://gitlab.com/basile.b/dexed.git
fixes for the linux version
This commit is contained in:
parent
305d64f6d9
commit
f767c5be1b
Binary file not shown.
|
@ -425,7 +425,7 @@ begin
|
|||
result:=Folder;
|
||||
{$ENDIF}
|
||||
{$IFDEF UNIX}
|
||||
result := ExpandFileName('~/'));
|
||||
result := ExpandFileName('~/');
|
||||
{$ENDIF}
|
||||
result += directorySeparator + 'Coedit' + directorySeparator;
|
||||
end;
|
||||
|
|
|
@ -340,6 +340,7 @@ begin
|
|||
DockMaster.OnCreateControl := @DockMasterCreateControl;
|
||||
DockMaster.OnShowOptions := @ShowAnchorDockOptions;
|
||||
DockMaster.HeaderStyle := adhsPoints;
|
||||
|
||||
if DockManager is TAnchorDockManager then begin
|
||||
aManager:=TAnchorDockManager(DockManager);
|
||||
aManager.PreferredSiteSizeAsSiteMinimum:=false;
|
||||
|
@ -362,8 +363,6 @@ begin
|
|||
DockMaster.ManualDock(DockMaster.GetAnchorSite(fPrjCfWidg),
|
||||
DockMaster.GetAnchorSite(fProjWidg), alBottom, fProjWidg);
|
||||
DockMaster.GetAnchorSite(fEditWidg).Header.HeaderPosition := adlhpTop;
|
||||
//
|
||||
SaveDocking;
|
||||
end;
|
||||
|
||||
procedure TCEMainForm.InitSettings;
|
||||
|
@ -409,7 +408,7 @@ procedure TCEMainForm.SaveDocking;
|
|||
var
|
||||
xcfg: TXMLConfigStorage;
|
||||
begin
|
||||
xcfg := TXMLConfigStorage.Create(getDocPath + 'docking.xml',true);
|
||||
xcfg := TXMLConfigStorage.Create(getDocPath + 'docking.xml',false);
|
||||
try
|
||||
// <Item1 Name="CEMainForm" Type="CustomSite" ChildCount="..."> is always missing
|
||||
DockMaster.SaveLayoutToConfig(xcfg);
|
||||
|
|
Loading…
Reference in New Issue