diff --git a/sources/editor/elementscene.cpp b/sources/editor/elementscene.cpp index c8462595e..2f21a2ecf 100644 --- a/sources/editor/elementscene.cpp +++ b/sources/editor/elementscene.cpp @@ -522,6 +522,7 @@ QRectF ElementScene::elementSceneGeometricRect() const{ foreach (QGraphicsItem *qgi, items()) { if (qgi -> type() == ElementPrimitiveDecorator::Type) continue; if (qgi -> type() == QGraphicsRectItem::Type) continue; + if (qgi -> type() == PartTextField::Type) continue; if (CustomElementPart *cep = dynamic_cast (qgi)) { esgr |= cep -> sceneGeometricRect(); }