From: speleo3 Date: Mon, 23 Nov 2009 19:31:42 +0000 (+0000) Subject: fix bug 427267, single dots inside transformed groups misplaced X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=188155f63ba47ab98af0454abf28f93516254606;p=inkscape.git fix bug 427267, single dots inside transformed groups misplaced --- diff --git a/src/draw-context.cpp b/src/draw-context.cpp index d2794f0c2..de9a7c7e5 100644 --- a/src/draw-context.cpp +++ b/src/draw-context.cpp @@ -841,7 +841,7 @@ void spdc_create_single_dot(SPEventContext *ec, Geom::Point const &pt, char cons Inkscape::Preferences *prefs = Inkscape::Preferences::get(); Geom::Matrix const i2d (sp_item_i2d_affine (item)); - Geom::Point pp = pt * i2d; + Geom::Point pp = pt; double rad = 0.5 * prefs->getDouble(tool_path + "/dot-size", 3.0); if (event_state & GDK_MOD1_MASK) { /* TODO: We vary the dot size between 0.5*rad and 1.5*rad, where rad is the dot size @@ -860,6 +860,7 @@ void spdc_create_single_dot(SPEventContext *ec, Geom::Point const &pt, char cons sp_repr_set_svg_double (repr, "sodipodi:rx", rad * stroke_width); sp_repr_set_svg_double (repr, "sodipodi:ry", rad * stroke_width); item->updateRepr(); + sp_item_set_item_transform(item, i2d.inverse()); sp_desktop_selection(desktop)->set(item);