diff options
author | rowanbeentje <rowan@beent.je> | 2010-12-20 02:01:49 +0000 |
---|---|---|
committer | rowanbeentje <rowan@beent.je> | 2010-12-20 02:01:49 +0000 |
commit | b3b8f0ff04486a982175f70ba72a623a5fff9ad7 (patch) | |
tree | b7b08d3a237964de454b76d3a678d9e4ee240773 /Source/SPConnectionController.m | |
parent | 2a6c654d165c207281d10295ebcc40b3cae864ea (diff) | |
download | sequelpro-b3b8f0ff04486a982175f70ba72a623a5fff9ad7.tar.gz sequelpro-b3b8f0ff04486a982175f70ba72a623a5fff9ad7.tar.bz2 sequelpro-b3b8f0ff04486a982175f70ba72a623a5fff9ad7.zip |
Address Issue #857:
- Replace master connection and database view split views with full BWSplitViews so controls appear in Interface Builder; use those settings to apply which panes resize, and any max/min constraints
- Remove split view delegate code which is no longer necessary after these changes
- Fix a bug marking the master database view split view thumb as applying to all DatabaseDocument splits views, fixing cursor issues
- Update Connection Controller/BWToolkit split view delegate setup to fix resizing issues
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 4e8338aa..e22719de 100644 --- a/Source/SPConnectionController.m +++ b/Source/SPConnectionController.m @@ -113,7 +113,7 @@ [connectionView setFrame:[databaseConnectionView frame]]; [databaseConnectionSuperview addSubview:connectionView]; [connectionSplitView setPosition:[[tableDocument valueForKey:@"dbTablesTableView"] frame].size.width-6 ofDividerAtIndex:0]; - [connectionSplitViewButtonBar setSplitViewDelegate:self]; + [connectionSplitView setDelegate:self]; [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(scrollViewFrameChanged:) name:NSViewFrameDidChangeNotification object:nil]; // Set up a keychain instance and preferences reference, and create the initial favorites list |