From e5e3c24ed42acb82a240c16b37dc111825a216ac Mon Sep 17 00:00:00 2001
From: Marco Bubke <marco.bubke@nokia.com>
Date: Mon, 8 Feb 2010 12:55:54 +0100
Subject: [PATCH] Change formeditor bounding rect painting

---
 .../qmldesigner/components/formeditor/formeditoritem.cpp   | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/src/plugins/qmldesigner/components/formeditor/formeditoritem.cpp b/src/plugins/qmldesigner/components/formeditor/formeditoritem.cpp
index 56d0db99740..605480ad22a 100644
--- a/src/plugins/qmldesigner/components/formeditor/formeditoritem.cpp
+++ b/src/plugins/qmldesigner/components/formeditor/formeditoritem.cpp
@@ -198,7 +198,8 @@ FormEditorItem* FormEditorItem::fromQGraphicsItem(QGraphicsItem *graphicsItem)
 
 void FormEditorItem::paintBoundingRect(QPainter *painter) const
 {
-    if (QGraphicsItem::parentItem() == scene()->formLayerItem() && qFuzzyIsNull(m_borderWidth))
+    if (!boundingRect().isValid()
+        || (QGraphicsItem::parentItem() == scene()->formLayerItem() && qFuzzyIsNull(m_borderWidth)))
           return;
 
     QPen pen;
@@ -234,9 +235,7 @@ void FormEditorItem::paintBoundingRect(QPainter *painter) const
     painter->setPen(pen);
 //    int offset =  m_borderWidth / 2;
 
-    const QRectF br = boundingRect();
-    if (br.isValid())
-        painter->drawRect(br.adjusted(0., 0., -1., -1.));
+    painter->drawRect(boundingRect().adjusted(0., 0., -1., -1.));
 }
 
 void FormEditorItem::paint(QPainter *painter, const QStyleOptionGraphicsItem *, QWidget *)
-- 
GitLab