NSWindow AutoSave

2012-06-22 Thread koko
I have searched, read and implemented the suggestions found but in no case can I get a non-resizeable window or panel to open in the last position it occupied. There must be some secret sauce, is anyone willing to share the recipe? -koko ___

Re: NSWindow AutoSave

2012-06-22 Thread Richard Altenburg (Brainchild)
It seems to me that indeed there are bugs in the AutoSave mechanism, but as I am not sure what you already tried I suggest reading this and then ask for more when needed: http://cocoadev.com/wiki/NSWindowFrameAutosizing Op 22 jun. 2012, om 18:10 heeft koko het volgende geschreven: I have

Re: NSWindow AutoSave

2012-06-22 Thread Charlie Dickman
I don't know that this is a secret recipe but it works for me when I include the following 2 lines of code in the awakeFromNib method of the NSview in the window... [[self window] setFrameUsingName: @autosaveView]; [[self window] setFrameAutosaveName: @autosaveView]; And I don't know