aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormltownsend <mltownsend@gmail.com>2010-05-11 23:50:05 +0000
committermltownsend <mltownsend@gmail.com>2010-05-11 23:50:05 +0000
commit71bd1585cc7dae4b04f8aa61b0b5e468ceab41d5 (patch)
tree0257756293e7af020fc1dfbabd9d7f90f0acfdb5
parent00abe0fa272dd06b8b12fa13cb16af1ca89de58c (diff)
downloadsequelpro-71bd1585cc7dae4b04f8aa61b0b5e468ceab41d5.tar.gz
sequelpro-71bd1585cc7dae4b04f8aa61b0b5e468ceab41d5.tar.bz2
sequelpro-71bd1585cc7dae4b04f8aa61b0b5e468ceab41d5.zip
Fix for Issue#656. The setExtensionHidden: method should not be called and setCanSelectedHiddenExtension:should be set to YES.
-rw-r--r--Source/TableDump.m3
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/TableDump.m b/Source/TableDump.m
index 6dd3833c..d6c703ca 100644
--- a/Source/TableDump.m
+++ b/Source/TableDump.m
@@ -159,7 +159,8 @@
NSString *contextInfo;
currentExportPanel = [NSSavePanel savePanel];
[currentExportPanel setAllowsOtherFileTypes:YES];
- [currentExportPanel setExtensionHidden:NO];
+// [currentExportPanel setExtensionHidden:YES];
+ [currentExportPanel setCanSelectHiddenExtension:YES];
NSString *currentDate = [[NSDate date] descriptionWithCalendarFormat:@"%Y-%m-%d" timeZone:nil locale:nil];
switch ( tag ) {