(tested on windows, Lazarus 0918 and 0919):


From Lazarus 0918 each time I restart Lazarus, my Project Inspector
Window is not showed. Annoyed by that, I solved the problem modifying the MainIDEFormCLose in $(LazarusDir)\ide\main.pp:


procedure TMainIDE.MainIDEFormClose(Sender: TObject;
  var CloseAction: TCloseAction);
begin
  SaveEnvironment;              
  CloseIDEWindows;
//  SaveEnvironment;            moved up
  SaveIncludeLinks;
  InputHistories.Save;
  PkgBoss.SaveSettings;
  if TheControlSelection<>nil then TheControlSelection.Clear;
  if SourceNoteBook<>nil then
SourceNoteBook.ClearUnUsedEditorComponents(true);
  FreeIDEWindows;
end;


from Lazarus 0918 the positions of the IDE windows are no more saved on
exit. Ok, this may be not an issue but it's annoying.
I suppose that each time I need to freeze IDE windows positions I have to do it with Environment --> Environment Otions --> Windows Tab each time I need.


bye
tiziano

_________________________________________________________________
    To unsubscribe: mail [EMAIL PROTECTED] with
               "unsubscribe" as the Subject
  archives at http://www.lazarus.freepascal.org/mailarchives

Reply via email to