From 980b09522cc26bcd2aa03aa56d798506cc2a9429 Mon Sep 17 00:00:00 2001 From: Mitchell Livingston Date: Sat, 12 Sep 2009 01:00:54 +0000 Subject: [PATCH] (trunk) make sure the creator window size/placement is saved correctly --- macosx/CreatorWindowController.m | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/macosx/CreatorWindowController.m b/macosx/CreatorWindowController.m index da8e3a83a..f67bca442 100644 --- a/macosx/CreatorWindowController.m +++ b/macosx/CreatorWindowController.m @@ -64,7 +64,7 @@ - (id) initWithHandle: (tr_session *) handle path: (NSString *) path { if ((self = [super initWithWindowNibName: @"Creator"])) - { + {//NSLog([[self window] frameAutosaveName]); fStarted = NO; fPath = [path retain]; @@ -479,6 +479,7 @@ [fProgressView setHidden: YES]; NSWindow * window = [self window]; + [window setFrameAutosaveName: @""]; NSRect windowRect = [window frame]; CGFloat difference = [fProgressView frame].size.height - [[window contentView] frame].size.height;