summaryrefslogtreecommitdiffstats
path: root/desktop-widgets/printdialog.cpp
diff options
context:
space:
mode:
authorGravatar Robert C. Helling <helling@atdotde.de>2020-08-22 14:36:41 +0200
committerGravatar Dirk Hohndel <dirk@hohndel.org>2020-09-03 11:46:16 -0700
commit8f6d05414050a52209556576816ec10cc041e547 (patch)
tree3a16f5fe36155864e4ba8bd8048bcb2fa9ff8877 /desktop-widgets/printdialog.cpp
parent02a4aa927e1e47e9cf7bbafc9c233594cad29c2b (diff)
downloadsubsurface-8f6d05414050a52209556576816ec10cc041e547.tar.gz
Set printer resolution
You need a better resolution to plot a picture with high resolution... Connection done with a lambda expression thanks to @dirkhh. Signed-off-by: Robert C. Helling <helling@atdotde.de> (+1 squashed commit) Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'desktop-widgets/printdialog.cpp')
-rw-r--r--desktop-widgets/printdialog.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/desktop-widgets/printdialog.cpp b/desktop-widgets/printdialog.cpp
index f0c8f4df8..339914b6a 100644
--- a/desktop-widgets/printdialog.cpp
+++ b/desktop-widgets/printdialog.cpp
@@ -171,6 +171,7 @@ void PrintDialog::createPrinterObj()
// create a new printer object
if (!printer) {
qprinter = new QPrinter();
+ qprinter->setResolution(printOptions.resolution);
qprinter->setOrientation((QPrinter::Orientation)printOptions.landscape);
printer = new Printer(qprinter, &printOptions, &templateOptions, Printer::PRINT);
}