summaryrefslogtreecommitdiffstats
path: root/src/sp-symbol.cpp
diff options
context:
space:
mode:
authorTavmjong Bah <tavmjong@free.fr>2012-10-11 17:54:14 +0000
committertavmjong-free <tavmjong@free.fr>2012-10-11 17:54:14 +0000
commitf304ab600788b02cb02a4413f68f466e35cf1539 (patch)
tree0dc39d0d1075471992d1adb4cb75fae7d75ee396 /src/sp-symbol.cpp
parentFix for 1058402 : Inconsistent opacity indication (diff)
downloadinkscape-f304ab600788b02cb02a4413f68f466e35cf1539.tar.gz
inkscape-f304ab600788b02cb02a4413f68f466e35cf1539.zip
Add symbols dialog. See: http://wiki.inkscape.org/wiki/index.php/SymbolsDialog
(bzr r11782)
Diffstat (limited to 'src/sp-symbol.cpp')
-rw-r--r--src/sp-symbol.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/sp-symbol.cpp b/src/sp-symbol.cpp
index 87cd210e4..56f862bf3 100644
--- a/src/sp-symbol.cpp
+++ b/src/sp-symbol.cpp
@@ -405,6 +405,11 @@ static Geom::OptRect sp_symbol_bbox(SPItem const *item, Geom::Affine const &tran
Geom::Affine const a( symbol->c2p * transform );
bbox = ((SPItemClass *) (parent_class))->bbox(item, a, type);
}
+ } else {
+ // Need bounding box for Symbols dialog
+
+ Geom::Affine const a;
+ bbox = ((SPItemClass *) (parent_class))->bbox(item, a, type);
}
return bbox;
}