summaryrefslogtreecommitdiffstats
path: root/src/sp-symbol.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/sp-symbol.cpp')
-rw-r--r--src/sp-symbol.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/sp-symbol.cpp b/src/sp-symbol.cpp
index 6ee377bc6..b2346ac91 100644
--- a/src/sp-symbol.cpp
+++ b/src/sp-symbol.cpp
@@ -366,8 +366,9 @@ void SPSymbol::hide(unsigned int key) {
Geom::OptRect SPSymbol::bbox(Geom::Affine const &transform, SPItem::BBoxType type) {
Geom::OptRect bbox;
+ // We don't need a bounding box for Symbols dialog when selecting
+ // symbols. They have no canvas location. But cloned symbols are.
if (this->cloned) {
- // Cloned <symbol> is actually renderable
Geom::Affine const a( this->c2p * transform );
bbox = SPGroup::bbox(a, type);
}