diff options
author | stuconnolly <stuart02@gmail.com> | 2013-01-07 22:24:35 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2013-01-07 22:24:35 +0000 |
commit | 18c31ef044b6d2959e55edb3bbff1fd373ea4350 (patch) | |
tree | 110f12ff65ac267b44baf37ae4e486cb3225ca7d /Source | |
parent | b659d41228422e9ed6c5e94bed879c2b2b57a115 (diff) | |
download | sequelpro-18c31ef044b6d2959e55edb3bbff1fd373ea4350.tar.gz sequelpro-18c31ef044b6d2959e55edb3bbff1fd373ea4350.tar.bz2 sequelpro-18c31ef044b6d2959e55edb3bbff1fd373ea4350.zip |
Increase the minimum size of the connection view's split view so we don't force the quick connect heading to be wrapped.
Diffstat (limited to 'Source')
-rw-r--r-- | Source/SPConnectionControllerDelegate.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/SPConnectionControllerDelegate.m b/Source/SPConnectionControllerDelegate.m index a9fb8621..ac9ef296 100644 --- a/Source/SPConnectionControllerDelegate.m +++ b/Source/SPConnectionControllerDelegate.m @@ -86,7 +86,7 @@ static NSString *SPQuickConnectImageWhite = @"quick-connect-icon-white.pdf"; - (CGFloat)splitView:(NSSplitView *)splitView constrainMinCoordinate:(CGFloat)proposedMax ofSubviewAt:(NSInteger)dividerIndex { - return 135.f; + return 145.f; } #endif |