diff options
| author | Nicolas Dufour <nicoduf@yahoo.fr> | 2014-03-17 14:07:28 +0000 |
|---|---|---|
| committer | JazzyNico <nicoduf@yahoo.fr> | 2014-03-17 14:07:28 +0000 |
| commit | c39ff7ba3dc2c7042f6d316d1df0ee047da82b26 (patch) | |
| tree | 74a766563a82da5975adb612351bd6f210787489 /src/ui/dialog/export.cpp | |
| parent | Fix for Bug #1293073 (Dragging a symbol crashes the application when the symb... (diff) | |
| download | inkscape-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/ui/dialog/export.cpp')
| -rw-r--r-- | src/ui/dialog/export.cpp | 2 |
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(); |
