summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorNicolas Dufour <nicoduf@yahoo.fr>2014-03-17 14:07:28 +0000
committerJazzyNico <nicoduf@yahoo.fr>2014-03-17 14:07:28 +0000
commitc39ff7ba3dc2c7042f6d316d1df0ee047da82b26 (patch)
tree74a766563a82da5975adb612351bd6f210787489 /src
parentFix for Bug #1293073 (Dragging a symbol crashes the application when the symb... (diff)
downloadinkscape-c39ff7ba3dc2c7042f6d316d1df0ee047da82b26.tar.gz
inkscape-c39ff7ba3dc2c7042f6d316d1df0ee047da82b26.zip
Fix for Bug #1158506 (Batch export DPI always at 90).
Fixed bugs: - https://launchpad.net/bugs/1158506 (bzr r13160)
Diffstat (limited to 'src')
-rw-r--r--src/ui/dialog/export.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/dialog/export.cpp b/src/ui/dialog/export.cpp
index f0a5f1bf5..913713e5c 100644
--- a/src/ui/dialog/export.cpp
+++ b/src/ui/dialog/export.cpp
@@ -1049,7 +1049,7 @@ void Export::onExport ()
dpi = atof(dpi_hint);
}
if (dpi == 0.0) {
- dpi = DPI_BASE;
+ dpi = getValue(xdpi_adj);
}
Geom::OptRect area = item->desktopVisualBounds();