summaryrefslogtreecommitdiffstats
path: root/src/ui/clipboard.cpp
diff options
context:
space:
mode:
authorAlvin Penner <penner@vaxxine.com>2014-12-19 14:25:59 +0000
committerapenner <penner@vaxxine.com>2014-12-19 14:25:59 +0000
commit9be96bd4e854c60dfdcb0009ec6b160a95a82570 (patch)
treec4631766ded9a394707798e9f9bff02247a27527 /src/ui/clipboard.cpp
parentDutch translation update (diff)
downloadinkscape-9be96bd4e854c60dfdcb0009ec6b160a95a82570.tar.gz
inkscape-9be96bd4e854c60dfdcb0009ec6b160a95a82570.zip
disable rev 13709, following Bug 1365451, comments 13-16
Fixed bugs: - https://launchpad.net/bugs/1365451 (bzr r13806)
Diffstat (limited to 'src/ui/clipboard.cpp')
-rw-r--r--src/ui/clipboard.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ui/clipboard.cpp b/src/ui/clipboard.cpp
index 7c82fb230..7661f466d 100644
--- a/src/ui/clipboard.cpp
+++ b/src/ui/clipboard.cpp
@@ -330,13 +330,13 @@ void ClipboardManagerImpl::copySymbol(Inkscape::XML::Node* symbol, gchar const*
use->setAttribute("xlink:href", id.c_str() );
// Set a default style in <use> rather than <symbol> so it can be changed.
use->setAttribute("style", style );
-
+/* disable rev 13709 in rev 13806, following Bug 1365451, comments 13-16
Inkscape::XML::Node *nv_repr = sp_desktop_namedview(SP_ACTIVE_DESKTOP)->getRepr();
gdouble scale_units = Inkscape::Util::Quantity::convert(1, nv_repr->attribute("inkscape:document-units"), "px");
gchar *transform_str = sp_svg_transform_write(Geom::Scale(scale_units, scale_units));
use->setAttribute("transform", transform_str);
g_free(transform_str);
-
+*/
_root->appendChild(use);
// This min and max sets offsets, we don't have any so set to zero.