diff options
author | rowanbeentje <rowan@beent.je> | 2012-06-04 22:34:15 +0000 |
---|---|---|
committer | rowanbeentje <rowan@beent.je> | 2012-06-04 22:34:15 +0000 |
commit | 41c6a1af0b7540c53a9de2e76c67b33ff56e907e (patch) | |
tree | 1b282d5f74b35c5e0ef1447d57d38747f74c2f0d /Source/SPConnectionHandler.m | |
parent | 0cd4120577b6e970f3425c49346332388a3d2fd4 (diff) | |
download | sequelpro-41c6a1af0b7540c53a9de2e76c67b33ff56e907e.tar.gz sequelpro-41c6a1af0b7540c53a9de2e76c67b33ff56e907e.tar.bz2 sequelpro-41c6a1af0b7540c53a9de2e76c67b33ff56e907e.zip |
- Fix loss of password on certain connection editing actions (type changes, localhost/127.0.0.1 auto-type changes)
Diffstat (limited to 'Source/SPConnectionHandler.m')
-rw-r--r-- | Source/SPConnectionHandler.m | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/SPConnectionHandler.m b/Source/SPConnectionHandler.m index cc2e1d84..ca488872 100644 --- a/Source/SPConnectionHandler.m +++ b/Source/SPConnectionHandler.m @@ -452,6 +452,7 @@ static NSString *SPLocalhostAddress = @"127.0.0.1"; // Change connection details [self setPort:tunnelPort]; [self setHost:SPLocalhostAddress]; + [self _updateFavoritePasswordsFromField:standardSQLHostField]; // Change to standard TCP/IP connection view [self resizeTabViewToConnectionType:SPTCPIPConnection animating:YES]; |