fixes for the linux version

This commit is contained in:
Basile Burg 2014-07-18 06:48:24 +02:00
parent 305d64f6d9
commit f767c5be1b
3 changed files with 3 additions and 4 deletions

BIN
lazproj/coedit Normal file

Binary file not shown.

View File

@ -425,7 +425,7 @@ begin
result:=Folder;
{$ENDIF}
{$IFDEF UNIX}
result := ExpandFileName('~/'));
result := ExpandFileName('~/');
{$ENDIF}
result += directorySeparator + 'Coedit' + directorySeparator;
end;

View File

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