diff options
author | rowanbeentje <rowan@beent.je> | 2010-11-29 00:42:32 +0000 |
---|---|---|
committer | rowanbeentje <rowan@beent.je> | 2010-11-29 00:42:32 +0000 |
commit | 2510f9b62f30cb3ea61c3ce7d0d12fef72af8f7e (patch) | |
tree | 515d5236117f77ee17255cbaf14d3813a37f17e9 /Source/SPConnectionDelegate.m | |
parent | 10117475bae9659b41d41c8d408bee3a3c0d6cf2 (diff) | |
download | sequelpro-2510f9b62f30cb3ea61c3ce7d0d12fef72af8f7e.tar.gz sequelpro-2510f9b62f30cb3ea61c3ce7d0d12fef72af8f7e.tar.bz2 sequelpro-2510f9b62f30cb3ea61c3ce7d0d12fef72af8f7e.zip |
- Change the CSV import accessory view to a general import accessory view, based on a tab view
- When importing SQL, use the accessory view to ask how to handle errors: Ask (the new default), which prompts the user on each error whether to continue, stop, or ignore all errors; and ignoring all errors, which matches the old behaviour. This addresses Issue #901.
- When showing the reconnection dialog ensure the window isn't minimised
- Update localisable strings
Diffstat (limited to 'Source/SPConnectionDelegate.m')
-rw-r--r-- | Source/SPConnectionDelegate.m | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/SPConnectionDelegate.m b/Source/SPConnectionDelegate.m index 4b928652..f02d5648 100644 --- a/Source/SPConnectionDelegate.m +++ b/Source/SPConnectionDelegate.m @@ -130,6 +130,9 @@ // Only display the reconnect dialog if the window is visible if ([self parentWindow] && [[self parentWindow] isVisible]) { + // Ensure the window isn't miniaturized + if ([[self parentWindow] isMiniaturized]) [[self parentWindow] deminiaturize:self]; + // Ensure the window and tab are frontmost [self makeKeyDocument]; |