summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJohn Smith <john.smith7545@yahoo.com>2012-03-21 09:20:22 +0000
committerJohn Smith <removethis.john.q.public@bigmail.com>2012-03-21 09:20:22 +0000
commit1a4923692ce3d1ffa90f882eb47a754f224ffb26 (patch)
tree433fbd6875ed7cf15a937a93c3554da6b3a11b83 /src
parentUI. Adding extension check in the context menu (see Bug #171842). (diff)
downloadinkscape-1a4923692ce3d1ffa90f882eb47a754f224ffb26.tar.gz
inkscape-1a4923692ce3d1ffa90f882eb47a754f224ffb26.zip
Fix for 959223 : Object selection messes up styles, regression from r11082
(bzr r11107)
Diffstat (limited to 'src')
-rw-r--r--src/widgets/stroke-style.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/widgets/stroke-style.cpp b/src/widgets/stroke-style.cpp
index f6afec18e..2e56dd696 100644
--- a/src/widgets/stroke-style.cpp
+++ b/src/widgets/stroke-style.cpp
@@ -229,6 +229,10 @@ static gboolean stroke_width_set_unit(SPUnitSelector *,
SPUnit const *new_units,
Gtk::Container *spw)
{
+ if (spw->get_data("update")) {
+ return FALSE;
+ }
+
SPDesktop *desktop = SP_ACTIVE_DESKTOP;
if (!desktop) {