aboutsummaryrefslogtreecommitdiffstats
path: root/Source/TableDocument.m
diff options
context:
space:
mode:
authorBibiko <bibiko@eva.mpg.de>2009-06-04 20:19:59 +0000
committerBibiko <bibiko@eva.mpg.de>2009-06-04 20:19:59 +0000
commit905dd61bd91f3dce22655bf942302739544dd86c (patch)
treeb8b6247c72a7716a8dff5e2211949dcfe186bf53 /Source/TableDocument.m
parenta62ac5494e570f782ab9bf74270f0ca7a61e033b (diff)
downloadsequelpro-905dd61bd91f3dce22655bf942302739544dd86c.tar.gz
sequelpro-905dd61bd91f3dce22655bf942302739544dd86c.tar.bz2
sequelpro-905dd61bd91f3dce22655bf942302739544dd86c.zip
• added: the "Show Create Syntax" window now follows the selection in the table list if it was already opened
• commented out the NSLog "not parsed" in SPTableData.m
Diffstat (limited to 'Source/TableDocument.m')
-rw-r--r--Source/TableDocument.m16
1 files changed, 14 insertions, 2 deletions
diff --git a/Source/TableDocument.m b/Source/TableDocument.m
index ca89d597..28e898a5 100644
--- a/Source/TableDocument.m
+++ b/Source/TableDocument.m
@@ -1177,13 +1177,17 @@ NSString *TableDocumentFavoritesControllerSelectionIndexDidChange = @"TableDocum
if ([tableSyntax isKindOfClass:[NSData class]])
tableSyntax = [[NSString alloc] initWithData:tableSyntax encoding:[mySQLConnection encoding]];
+ [syntaxViewContent setEditable:YES];
if([tablesListInstance tableType] == SP_TABLETYPE_VIEW)
[syntaxViewContent setString:[tableSyntax createViewSyntaxPrettifier]];
else
[syntaxViewContent setString:tableSyntax];
-
+ [syntaxViewContent setEditable:NO];
+
[createTableSyntaxWindow setTitle:createWindowTitle];
- [createTableSyntaxWindow makeKeyAndOrderFront:self];
+
+ if(![createTableSyntaxWindow isVisible])
+ [createTableSyntaxWindow makeKeyAndOrderFront:self];
}
/**
@@ -1923,6 +1927,14 @@ NSString *TableDocumentFavoritesControllerSelectionIndexDidChange = @"TableDocum
}
}
+/*
+ * Return the createTableSyntaxWindow
+ */
+- (NSWindow *)getCreateTableSyntaxWindow
+{
+ return createTableSyntaxWindow;
+}
+
#pragma mark Toolbar Methods
/**