diff options
author | Lubomir I. Ivanov <neolit123@gmail.com> | 2014-07-25 16:52:37 +0300 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-07-25 07:07:50 -0700 |
commit | cccf05ee7b8de7d4698e84505fcbb3285018a781 (patch) | |
tree | bef7b18198087f36b131daab50446c2da0d02734 /qt-ui/printdialog.cpp | |
parent | 0a53449e7620adf75322eafc0a3c870ccefd6fef (diff) | |
download | subsurface-cccf05ee7b8de7d4698e84505fcbb3285018a781.tar.gz |
PrintDialog: make "print only selected" the default option
Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/printdialog.cpp')
-rw-r--r-- | qt-ui/printdialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qt-ui/printdialog.cpp b/qt-ui/printdialog.cpp index 1112bcff7..d1553aeea 100644 --- a/qt-ui/printdialog.cpp +++ b/qt-ui/printdialog.cpp @@ -15,7 +15,7 @@ PrintDialog::PrintDialog(QWidget *parent, Qt::WindowFlags f) : QDialog(parent, f) { // options template (are we storing these in the settings?) - struct options tempOptions = { options::PRETTY, 0, 2, false }; + struct options tempOptions = { options::PRETTY, 1, 2, false }; printOptions = tempOptions; // create a print layout and pass the printer and options |