diff options
author | Max <post@wickenrode.com> | 2014-11-29 00:44:02 +0100 |
---|---|---|
committer | Max <post@wickenrode.com> | 2014-11-29 00:44:02 +0100 |
commit | a8598d0fb4bab81a3c654f99d2e6eebc7d818086 (patch) | |
tree | 78d1fffa25a05e0163812dd7be00c731ae7f7103 /Source/SPTableContentDelegate.m | |
parent | 065d72ceb7e8213348490815f6f90ecf4de56061 (diff) | |
download | sequelpro-a8598d0fb4bab81a3c654f99d2e6eebc7d818086.tar.gz sequelpro-a8598d0fb4bab81a3c654f99d2e6eebc7d818086.tar.bz2 sequelpro-a8598d0fb4bab81a3c654f99d2e6eebc7d818086.zip |
Change some split view width calculations.
* Attempt to fix the "<SPSplitView: ...>: the delegate <SPSplitView: ...> was sent -splitView:resizeSubviewsWithOldSize: and left the subview frames in an inconsistent state:" message that has been plaguing my console for some time.
* This commit also adds a minimum width on the main area to prevent some strange UI bugs.
Diffstat (limited to 'Source/SPTableContentDelegate.m')
-rw-r--r-- | Source/SPTableContentDelegate.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/SPTableContentDelegate.m b/Source/SPTableContentDelegate.m index 23cbfb6c..f6b933f7 100644 --- a/Source/SPTableContentDelegate.m +++ b/Source/SPTableContentDelegate.m @@ -641,7 +641,7 @@ */ - (CGFloat)splitView:(NSSplitView *)sender constrainMinCoordinate:(CGFloat)proposedMin ofSubviewAt:(NSInteger)offset { - return proposedMin + 200; + return proposedMin + 225; } /** |