From 17c39170ace58e9169ad3b183793dba9af07dd21 Mon Sep 17 00:00:00 2001 From: rowanbeentje Date: Tue, 20 Jul 2010 00:03:15 +0000 Subject: Tab tweaks: - Sheets now appear positioned underneath the tab bar if visible - Tweak bottom corner drawing for a clearer outline, without highlight overlay - Frontmost tab no longer displays server name in the tab Also fix exception when right-clicking on an index to reset auto-increment. --- Source/SPDatabaseDocument.m | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'Source') diff --git a/Source/SPDatabaseDocument.m b/Source/SPDatabaseDocument.m index 75e18ff3..a34d5b94 100644 --- a/Source/SPDatabaseDocument.m +++ b/Source/SPDatabaseDocument.m @@ -3817,8 +3817,8 @@ // Add the name to the window [windowTitle appendString:[self name]]; - // Also add to the frontmost tab, and other tabs if the host is different, not connected, or no db is selected - if (frontTableDocument == self || [[frontTableDocument name] isNotEqualTo:[self name]] || ![frontTableDocument getConnection] || ![self database]) { + // Also add to the non-front tabs if the host is different, not connected, or no db is selected + if ([[frontTableDocument name] isNotEqualTo:[self name]] || ![frontTableDocument getConnection] || ![self database]) { [tabTitle appendString:[self name]]; } @@ -4441,7 +4441,7 @@ if([tableTabView indexOfTabViewItem:[tableTabView selectedTabViewItem]] == 0 && [[sheet title] isEqualToString:@"Reset Auto Increment"]) { - id it = [tableSourceInstance valueForKeyPath:@"indexView"]; + id it = [tableSourceInstance valueForKeyPath:@"indexesTableView"]; NSRect mwrect = [[NSApp mainWindow] frame]; NSRect ltrect = [[tablesListInstance valueForKeyPath:@"tablesListView"] frame]; NSRect rowrect = [it rectOfRow:[it selectedRow]]; @@ -4450,9 +4450,10 @@ rowrect.origin.x -= 8; return [it convertRect:rowrect toView:nil]; - } else - return rect; + } + rect.origin.y -= [[parentWindowController valueForKey:@"tabBar"] frame].size.height - 1; + return rect; } #pragma mark - -- cgit v1.2.3