diff options
author | rowanbeentje <rowan@beent.je> | 2010-12-21 01:40:09 +0000 |
---|---|---|
committer | rowanbeentje <rowan@beent.je> | 2010-12-21 01:40:09 +0000 |
commit | 412b09885523847f4f9b0eb8bf898dcf72688952 (patch) | |
tree | 282ccf64d4a51f8cc79f27de94eef21ae99e1c05 /Source/SPConnectionController.m | |
parent | d23a09dbbc88a0e10d36b05bbacbca8c1dec3147 (diff) | |
download | sequelpro-412b09885523847f4f9b0eb8bf898dcf72688952.tar.gz sequelpro-412b09885523847f4f9b0eb8bf898dcf72688952.tar.bz2 sequelpro-412b09885523847f4f9b0eb8bf898dcf72688952.zip |
- Fix split view overlap on the custom query view cuasing lines on scrolling/resize; this addresses Issue #929
- Fix split view overlap on the tables list/info pane causing lines on scrolling/resize; this addresses Issue #740
- Add custom resize behaviour for the table content splitview, addressing Issue #543
- Make button bars at the bottom of the window a consistent height
- Fix bug with new splitview setup causing tables pane to become narrower with each launch
Diffstat (limited to 'Source/SPConnectionController.m')
-rw-r--r-- | Source/SPConnectionController.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/SPConnectionController.m b/Source/SPConnectionController.m index e22719de..a4adcf92 100644 --- a/Source/SPConnectionController.m +++ b/Source/SPConnectionController.m @@ -112,7 +112,7 @@ [databaseConnectionView setHidden:YES]; [connectionView setFrame:[databaseConnectionView frame]]; [databaseConnectionSuperview addSubview:connectionView]; - [connectionSplitView setPosition:[[tableDocument valueForKey:@"dbTablesTableView"] frame].size.width-6 ofDividerAtIndex:0]; + [connectionSplitView setPosition:[[tableDocument valueForKey:@"dbTablesTableView"] frame].size.width ofDividerAtIndex:0]; [connectionSplitView setDelegate:self]; [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(scrollViewFrameChanged:) name:NSViewFrameDidChangeNotification object:nil]; |