diff options
| author | Liam P. White <inkscapebronyat-signgmaildotcom> | 2014-05-10 13:47:56 +0000 |
|---|---|---|
| committer | Liam P. White <inkscapebronyat-signgmaildotcom> | 2014-05-10 13:47:56 +0000 |
| commit | 0a3de4794a6fa71b4c6b4217d42115001503013e (patch) | |
| tree | 739bac3c431db02722d9fd1e46d0f8766c0d0933 /src/live_effects/parameter/path.cpp | |
| parent | Update to trunk/integrate BSpline (diff) | |
| download | inkscape-0a3de4794a6fa71b4c6b4217d42115001503013e.tar.gz inkscape-0a3de4794a6fa71b4c6b4217d42115001503013e.zip | |
Fix stubborn bug 1299948
Fixed bugs:
- https://launchpad.net/bugs/1299948
(bzr r13090.1.74)
Diffstat (limited to '')
| -rw-r--r-- | src/live_effects/parameter/path.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/live_effects/parameter/path.cpp b/src/live_effects/parameter/path.cpp index cdbbef1db..44d414942 100644 --- a/src/live_effects/parameter/path.cpp +++ b/src/live_effects/parameter/path.cpp @@ -118,6 +118,11 @@ PathParam::param_readSVGValue(const gchar * strvalue) // Now do the attaching, which emits the changed signal. try { ref.attach(Inkscape::URI(href)); + //lp:1299948 + SPItem* i = ref.getObject(); + if (i) { + linked_modified_callback(i, SP_OBJECT_MODIFIED_FLAG); + } // else: document still processing new events. Repr of the linked object not created yet. } catch (Inkscape::BadURIException &e) { g_warning("%s", e.what()); ref.detach(); |
