diff options
| author | Kris De Gussem <kris.degussem@gmail.com> | 2012-04-13 19:31:13 +0000 |
|---|---|---|
| committer | Kris <Kris.De.Gussem@hotmail.com> | 2012-04-13 19:31:13 +0000 |
| commit | 373c1189500bdde8e368e68aeac262e9f560c825 (patch) | |
| tree | 7ddcfdaeb61e17f8a295170c807e19b4b88ec9f5 /src/ui/dialog/export.cpp | |
| parent | better memleak fix than rev. 11148 (diff) | |
| download | inkscape-373c1189500bdde8e368e68aeac262e9f560c825.tar.gz inkscape-373c1189500bdde8e368e68aeac262e9f560c825.zip | |
probably this was intended
(bzr r11237)
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 bb49d195c..f876b2339 100644 --- a/src/ui/dialog/export.cpp +++ b/src/ui/dialog/export.cpp @@ -1070,7 +1070,7 @@ void Export::onExport () modified = true; } temp_string = repr->attribute("inkscape:export-ydpi"); - if (temp_string == NULL || xdpi != atof(temp_string)) { + if (temp_string == NULL || ydpi != atof(temp_string)) { sp_repr_set_svg_double(repr, "inkscape:export-ydpi", ydpi); modified = true; } |
