diff options
author | Tibby Lickle <tibbylickle@gmail.com> | 2011-07-12 13:04:34 +0100 |
---|---|---|
committer | Tibby Lickle <tibbylickle@gmail.com> | 2011-07-12 13:04:34 +0100 |
commit | 23dce13e51695c377139cbe5da5e3bc62a9ab4ad (patch) | |
tree | aec947678d8842394864e9a3ef4f5765faa2e933 | |
parent | fedd40353bb4f61701f4365e2a75d4d5ba7da560 (diff) |
Fixed some missing NURBS sections
-rw-r--r-- | src/lib/VSDXContentCollector.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/lib/VSDXContentCollector.cpp b/src/lib/VSDXContentCollector.cpp index 9409a77..e765bf8 100644 --- a/src/lib/VSDXContentCollector.cpp +++ b/src/lib/VSDXContentCollector.cpp @@ -623,6 +623,12 @@ void libvisio::VSDXContentCollector::collectNURBSTo(unsigned /* id */, unsigned m_currentGeometry.push_back(NURBS); } + NURBS.clear(); + NURBS.insert("libwpg:path-action", "L"); + NURBS.insert("svg:x", m_scale*x2); + NURBS.insert("svg:y", m_scale*y2); + + m_originalX = x2; m_originalY = y2; m_x = x2; m_y = y2; |