diff options
author | stuconnolly <stuart02@gmail.com> | 2010-07-06 21:10:20 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2010-07-06 21:10:20 +0000 |
commit | d3d7ed84f9c56d83d4a92f6f1c40d1280502adad (patch) | |
tree | d4873f535caca1fec0c1af5f7491f78b5320ef33 /Source/SPDatabaseDocument.m | |
parent | b5fa14109a046aee489d93e39897a30579df22f4 (diff) | |
download | sequelpro-d3d7ed84f9c56d83d4a92f6f1c40d1280502adad.tar.gz sequelpro-d3d7ed84f9c56d83d4a92f6f1c40d1280502adad.tar.bz2 sequelpro-d3d7ed84f9c56d83d4a92f6f1c40d1280502adad.zip |
- Make the query info/error display collapsible.
- Add a 'gear menu' with the option to export the current result set as either CSV or XML.
(Note, that the collapsiable view currently suffers from the same BWToolKit issue as the table information pane).
Diffstat (limited to 'Source/SPDatabaseDocument.m')
-rw-r--r-- | Source/SPDatabaseDocument.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/SPDatabaseDocument.m b/Source/SPDatabaseDocument.m index e7c12fcf..028c2c30 100644 --- a/Source/SPDatabaseDocument.m +++ b/Source/SPDatabaseDocument.m @@ -2346,7 +2346,7 @@ */ - (IBAction)exportSelectedTablesAs:(id)sender { - [exportControllerInstance exportTables:[tablesListInstance selectedTableItems] asFormat:[sender tag]]; + [exportControllerInstance exportTables:[tablesListInstance selectedTableItems] asFormat:[sender tag] usingSource:SPTableExport]; } #pragma mark - |