diff options
author | Bibiko <bibiko@eva.mpg.de> | 2009-10-13 14:43:04 +0000 |
---|---|---|
committer | Bibiko <bibiko@eva.mpg.de> | 2009-10-13 14:43:04 +0000 |
commit | 8a3267a14a21b4c01d05c25e3add0887233298c0 (patch) | |
tree | 9244b1a29322d9630718254bccd64b08c6cb2a1f /Source | |
parent | d77ef8c0d4526c44823216c219f0734639cad701 (diff) | |
download | sequelpro-8a3267a14a21b4c01d05c25e3add0887233298c0.tar.gz sequelpro-8a3267a14a21b4c01d05c25e3add0887233298c0.tar.bz2 sequelpro-8a3267a14a21b4c01d05c25e3add0887233298c0.zip |
• changed Error Detail HUD window for the connection manager slightly:
- suppress spell checking
- set left alignment
- set a minimum window size
- set font size to 12pt (to make it easier to read)
Diffstat (limited to 'Source')
-rw-r--r-- | Source/SPConnectionController.m | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/SPConnectionController.m b/Source/SPConnectionController.m index 9abf8930..3eed2c83 100644 --- a/Source/SPConnectionController.m +++ b/Source/SPConnectionController.m @@ -415,6 +415,8 @@ } if (returnCode == NSAlertAlternateReturn) { + [errorDetailText setFont:[NSFont userFontOfSize:12]]; + [errorDetailText setAlignment:NSLeftTextAlignment]; [errorDetailWindow makeKeyAndOrderFront:self]; } // Currently only SSH port bind errors offer a 3rd option in the error dialog, but if this ever changes |