From 586acac6e52985af50ea303a1397eec6206b7626 Mon Sep 17 00:00:00 2001
From: Thomas Hartmann <Thomas.Hartmann@nokia.com>
Date: Wed, 7 Apr 2010 14:30:29 +0200
Subject: [PATCH] QmlDesigner.propertyEditor: remove margins instead of setting
 to 0

---
 .../components/propertyeditor/qmlanchorbindingproxy.cpp   | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/plugins/qmldesigner/components/propertyeditor/qmlanchorbindingproxy.cpp b/src/plugins/qmldesigner/components/propertyeditor/qmlanchorbindingproxy.cpp
index fb032baa528..772ff7f7e2f 100644
--- a/src/plugins/qmldesigner/components/propertyeditor/qmlanchorbindingproxy.cpp
+++ b/src/plugins/qmldesigner/components/propertyeditor/qmlanchorbindingproxy.cpp
@@ -514,10 +514,10 @@ void QmlAnchorBindingProxy::fill()
     setHorizontalCentered(false);
     setVerticalCentered(false);
 
-    m_fxItemNode.anchors().setMargin(AnchorLine::Right, 0);
-    m_fxItemNode.anchors().setMargin(AnchorLine::Left, 0);
-    m_fxItemNode.anchors().setMargin(AnchorLine::Top, 0);
-    m_fxItemNode.anchors().setMargin(AnchorLine::Bottom, 0);
+    m_fxItemNode.anchors().removeMargin(AnchorLine::Right);
+    m_fxItemNode.anchors().removeMargin(AnchorLine::Left);
+    m_fxItemNode.anchors().removeMargin(AnchorLine::Top);
+    m_fxItemNode.anchors().removeMargin(AnchorLine::Bottom);
 
     emit topAnchorChanged();
     emit bottomAnchorChanged();
-- 
GitLab