diff options
author | rowanbeentje <rowan@beent.je> | 2011-01-24 01:19:11 +0000 |
---|---|---|
committer | rowanbeentje <rowan@beent.je> | 2011-01-24 01:19:11 +0000 |
commit | 0c5422bb4e45e5890ce647001758371307a445d0 (patch) | |
tree | 3edcf6727910aede31e726de80906e9050b86cd1 | |
parent | e6401c18e859c55b6245e970b1374120bdba9999 (diff) | |
download | sequelpro-0c5422bb4e45e5890ce647001758371307a445d0.tar.gz sequelpro-0c5422bb4e45e5890ce647001758371307a445d0.tar.bz2 sequelpro-0c5422bb4e45e5890ce647001758371307a445d0.zip |
- Fix issues restoring the filename or advanced views in the export interface when they have been automatically collapsed when the sheet closed
-rw-r--r-- | Source/SPExportController.m | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/SPExportController.m b/Source/SPExportController.m index 1d70f88f..9081b942 100644 --- a/Source/SPExportController.m +++ b/Source/SPExportController.m @@ -282,10 +282,12 @@ static const NSString *SPTableViewDropColumnID = @"drop"; // Close the advanced options view if it's open [exportAdvancedOptionsView setHidden:YES]; [exportAdvancedOptionsViewButton setState:NSOffState]; + showAdvancedView = NO; // Close the customize filename view if it's open [exportCustomFilenameView setHidden:YES]; [exportCustomFilenameViewButton setState:NSOffState]; + showCustomFilenameView = NO; // If open close the advanced options view and custom filename view [self _resizeWindowForAdvancedOptionsViewByHeightDelta:0]; |