aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPNavigatorController.m
diff options
context:
space:
mode:
authorrowanbeentje <rowan@beent.je>2012-08-02 00:08:50 +0000
committerrowanbeentje <rowan@beent.je>2012-08-02 00:08:50 +0000
commit7f5790bcd50b3c5bbd9643ff66b7c8993520b5c4 (patch)
treea351cb1c983d3db7bb53d339f91e61d5a8f19b79 /Source/SPNavigatorController.m
parent2f8cd7600be2e85fe27bda04862aceff86b38e30 (diff)
downloadsequelpro-7f5790bcd50b3c5bbd9643ff66b7c8993520b5c4.tar.gz
sequelpro-7f5790bcd50b3c5bbd9643ff66b7c8993520b5c4.tar.bz2
sequelpro-7f5790bcd50b3c5bbd9643ff66b7c8993520b5c4.zip
- Remove all BWToolKit elements from the ExportDialog, DatabaseServerVariables, Navigator, and IndexesView nibs, replacing with SPSplitView and standard equivalents
Diffstat (limited to 'Source/SPNavigatorController.m')
-rw-r--r--Source/SPNavigatorController.m5
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/SPNavigatorController.m b/Source/SPNavigatorController.m
index d4b193be..2b9fe902 100644
--- a/Source/SPNavigatorController.m
+++ b/Source/SPNavigatorController.m
@@ -31,6 +31,7 @@
// More info at <http://code.google.com/p/sequel-pro/>
#import "SPNavigatorController.h"
+#import "SPSplitView.h"
#ifndef SP_REFACTOR /* headers */
#import "RegexKitLite.h"
#import "SPNavigatorOutlineView.h"
@@ -150,6 +151,10 @@ static NSComparisonResult compareStrings(NSString *s1, NSString *s2, void* conte
{
prefs = [NSUserDefaults standardUserDefaults];
+ // Set up the splitview
+ [schemaStatusSplitView setMinSize:32.f ofSubviewAtIndex:0];
+ [schemaStatusSplitView setMinSize:16.f ofSubviewAtIndex:1];
+
[self setWindowFrameAutosaveName:@"SPNavigator"];
[outlineSchema2 registerForDraggedTypes:[NSArray arrayWithObjects:SPNavigatorTableDataPasteboardDragType, SPNavigatorPasteboardDragType, NSStringPboardType, nil]];
[outlineSchema2 setDraggingSourceOperationMask:NSDragOperationEvery forLocal:YES];