Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Marco Bubke
flatpak-qt-creator
Commits
586acac6
Commit
586acac6
authored
Apr 07, 2010
by
Thomas Hartmann
Browse files
QmlDesigner.propertyEditor: remove margins instead of setting to 0
parent
87212f06
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/qmldesigner/components/propertyeditor/qmlanchorbindingproxy.cpp
View file @
586acac6
...
...
@@ -514,10 +514,10 @@ void QmlAnchorBindingProxy::fill()
setHorizontalCentered
(
false
);
setVerticalCentered
(
false
);
m_fxItemNode
.
anchors
().
set
Margin
(
AnchorLine
::
Right
,
0
);
m_fxItemNode
.
anchors
().
set
Margin
(
AnchorLine
::
Left
,
0
);
m_fxItemNode
.
anchors
().
set
Margin
(
AnchorLine
::
Top
,
0
);
m_fxItemNode
.
anchors
().
set
Margin
(
AnchorLine
::
Bottom
,
0
);
m_fxItemNode
.
anchors
().
remove
Margin
(
AnchorLine
::
Right
);
m_fxItemNode
.
anchors
().
remove
Margin
(
AnchorLine
::
Left
);
m_fxItemNode
.
anchors
().
remove
Margin
(
AnchorLine
::
Top
);
m_fxItemNode
.
anchors
().
remove
Margin
(
AnchorLine
::
Bottom
);
emit
topAnchorChanged
();
emit
bottomAnchorChanged
();
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment