diff options
| author | mathog <> | 2015-02-09 20:24:14 +0000 |
|---|---|---|
| committer | mathog <> | 2015-02-09 20:24:14 +0000 |
| commit | 265ab5dab1c7dbcaf1cb89bbe4e1b38ee1abb283 (patch) | |
| tree | 834f2ddc5fbc90d544c867f6f9592d31c2f0e193 /src/extension/internal/emf-print.cpp | |
| parent | restore original behavior of 'Resize Page to Selection' for the special case ... (diff) | |
| download | inkscape-265ab5dab1c7dbcaf1cb89bbe4e1b38ee1abb283.tar.gz inkscape-265ab5dab1c7dbcaf1cb89bbe4e1b38ee1abb283.zip | |
fix for bug 1405292
(bzr r13913)
Diffstat (limited to 'src/extension/internal/emf-print.cpp')
| -rw-r--r-- | src/extension/internal/emf-print.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/extension/internal/emf-print.cpp b/src/extension/internal/emf-print.cpp index f7b6626c4..b22dbc0e3 100644 --- a/src/extension/internal/emf-print.cpp +++ b/src/extension/internal/emf-print.cpp @@ -706,7 +706,7 @@ int PrintEmf::create_pen(SPStyle const *style, const Geom::Affine &transform) n_dash = style->stroke_dasharray.values.size(); dash = new uint32_t[n_dash]; for (i = 0; i < n_dash; i++) { - dash[i] = (uint32_t)(Inkscape::Util::Quantity::convert(1, "mm", "px") * style->stroke_dasharray.values[i]); + dash[i] = style->stroke_dasharray.values[i]; } } } |
