diff options
author | bamse16 <marius@marius.me.uk> | 2009-05-25 10:49:09 +0000 |
---|---|---|
committer | bamse16 <marius@marius.me.uk> | 2009-05-25 10:49:09 +0000 |
commit | 6c97955139cc9dd158e600113af5cff838aa24b7 (patch) | |
tree | cdc7d93d0891f5d1a26dac68347f252dedcfad33 /Source | |
parent | 1c60ff0331ce7e2a9eb64e1fda988b0bf3448bd2 (diff) | |
download | sequelpro-6c97955139cc9dd158e600113af5cff838aa24b7.tar.gz sequelpro-6c97955139cc9dd158e600113af5cff838aa24b7.tar.bz2 sequelpro-6c97955139cc9dd158e600113af5cff838aa24b7.zip |
Issue #227 -
Added paper size option in the print panel. Will check if this is fine instead of enabling the page setup menu again.
Diffstat (limited to 'Source')
-rw-r--r-- | Source/TableDocument.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/TableDocument.m b/Source/TableDocument.m index 6cd9284a..9b15dced 100644 --- a/Source/TableDocument.m +++ b/Source/TableDocument.m @@ -126,7 +126,7 @@ NSString *TableDocumentFavoritesControllerSelectionIndexDidChange = @"TableDocum //add ability to select orientation to print panel NSPrintPanel *printPanel = [op printPanel]; - [printPanel setOptions:[printPanel options] + NSPrintPanelShowsOrientation + NSPrintPanelShowsScaling]; + [printPanel setOptions:[printPanel options] + NSPrintPanelShowsOrientation + NSPrintPanelShowsScaling + NSPrintPanelShowsPaperSize]; [op setPrintPanel:printPanel]; [op runOperationModalForWindow:tableWindow |