I want to save the docking layout tool windows but leave tabbed panels untouched.I have added this code to the OnSave event:
procedure TfmIDEMain.LMDDockManager1SaveSite(Sender: TObject;
ASite: TLMDDockSite; AFloat: Boolean; var ASave: Boolean);
begin
ASave := not ASite.RootZone.TabbedDocsHost;
end;
however, on re-loading file layout file any Tabbed doc open gets hidden. I want to be able to change the layout of my tool windows by loading an alternative layout without affecting any of the tabbed working documents. I hope that makes sense.
Comments