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
48dee2d5
Commit
48dee2d5
authored
Feb 16, 2010
by
Thomas Hartmann
Browse files
QmlDesigner.propertyEditor: disable property editor for multiple selection
parent
ec01f530
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/qmldesigner/components/propertyeditor/propertyeditor.cpp
View file @
48dee2d5
...
...
@@ -385,12 +385,9 @@ void PropertyEditor::selectedNodesChanged(const QList<ModelNode> &selectedNodeLi
{
Q_UNUSED
(
lastSelectedNodeList
);
if
(
m_selectedNode
.
isValid
()
&&
selectedNodeList
.
contains
(
m_selectedNode
))
return
;
if
(
selectedNodeList
.
isEmpty
())
if
(
selectedNodeList
.
isEmpty
()
||
selectedNodeList
.
count
()
>
1
)
select
(
ModelNode
());
else
else
if
(
m_selectedNode
!=
selectedNodeList
.
first
())
select
(
selectedNodeList
.
first
());
}
...
...
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