summaryrefslogtreecommitdiffstats
path: root/src/document.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/document.cpp')
-rw-r--r--src/document.cpp10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/document.cpp b/src/document.cpp
index d6a2e1b98..54e98b3e6 100644
--- a/src/document.cpp
+++ b/src/document.cpp
@@ -1514,7 +1514,15 @@ bool SPDocument::addResource(gchar const *key, SPObject *object)
g_hash_table_insert(priv->resources, (gpointer) key, rlist);
GQuark q = g_quark_from_string(key);
- priv->resources_changed_signals[q].emit();
+
+ /*do not send signal if the object has no id (yet),
+ it means the object is not completely built.
+ (happens when pasting swatches across documents, cf bug 1495106)
+ [this check should be more generally presend on emit() calls since
+ the backtrace is unusable with crashed from this cause]
+ */
+ if(object->getId())
+ priv->resources_changed_signals[q].emit();
result = true;
}