diff options
author | stuconnolly <stuart02@gmail.com> | 2010-07-02 18:49:03 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2010-07-02 18:49:03 +0000 |
commit | d643a46ce890dccaff49809d5a4f086c8a492814 (patch) | |
tree | 1c906d8a08323c963b5e16f8abada36969f95e98 /Source | |
parent | 6b8fed25e1745f4a3f890cb190228c9b12857de3 (diff) | |
download | sequelpro-d643a46ce890dccaff49809d5a4f086c8a492814.tar.gz sequelpro-d643a46ce890dccaff49809d5a4f086c8a492814.tar.bz2 sequelpro-d643a46ce890dccaff49809d5a4f086c8a492814.zip |
Prevent the background colour of the view custom filename format view of the export dialog from changing when clicked.
Diffstat (limited to 'Source')
-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 |