diff options
author | rowanbeentje <rowan@beent.je> | 2009-07-06 13:08:07 +0000 |
---|---|---|
committer | rowanbeentje <rowan@beent.je> | 2009-07-06 13:08:07 +0000 |
commit | ba53d971b598247500e93a665b4cdb0526a36a50 (patch) | |
tree | 69a0407fa02b5db8e6c58a6bc1fe7ea87b6bd15e /Source/TableDocument.m | |
parent | 32294354ab3cc05c11178580550db4561dd2754f (diff) | |
download | sequelpro-ba53d971b598247500e93a665b4cdb0526a36a50.tar.gz sequelpro-ba53d971b598247500e93a665b4cdb0526a36a50.tar.bz2 sequelpro-ba53d971b598247500e93a665b4cdb0526a36a50.zip |
- Fix favorites text fields resizing in prefs window
- Correctly select Structure view after connection
Diffstat (limited to 'Source/TableDocument.m')
-rw-r--r-- | Source/TableDocument.m | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/TableDocument.m b/Source/TableDocument.m index 292aa884..1df0698a 100644 --- a/Source/TableDocument.m +++ b/Source/TableDocument.m @@ -172,7 +172,8 @@ [self setFileName:[NSString stringWithFormat:@"(MySQL %@) %@@%@ %@", mySQLVersion, [self user], [self host], [self database]]]; [tableWindow setTitle:[NSString stringWithFormat:@"(MySQL %@) %@/%@", mySQLVersion, [self name], ([self database]?[self database]:@"")]]; - + [self viewStructure:self]; + // Connected Growl notification [[SPGrowlController sharedGrowlController] notifyWithTitle:@"Connected" description:[NSString stringWithFormat:NSLocalizedString(@"Connected to %@",@"description for connected growl notification"), [tableWindow title]] |