diff options
-rw-r--r-- | Source/SPExportController.m | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/SPExportController.m b/Source/SPExportController.m index 825580a5..d21e0079 100644 --- a/Source/SPExportController.m +++ b/Source/SPExportController.m @@ -112,8 +112,12 @@ // Select the SQL tab [[exportTypeTabBar tabViewItemAtIndex:0] setView:exporterView]; + // By default a new SQL INSERT statement should be created every 250KiB of data [exportSQLInsertNValueTextField setIntegerValue:250]; + // Prevents the background colour from changing when clicked + [[exportCustomFilenameViewLabelButton cell] setHighlightsBy:NSNoCellMask]; + NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDesktopDirectory, NSUserDomainMask, YES); // If found the set the default path to the user's desktop, otherwise use their home directory |