Skip to content
GitLab
Menu
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
b9cb5b97
Commit
b9cb5b97
authored
Oct 25, 2010
by
Kai Koehne
Browse files
QmlJSInspector: Don't send update if selection hasn't changed
parent
c43496d0
Changes
1
Show whitespace changes
Inline
Side-by-side
src/plugins/qmljsinspector/qmljsobserverclient.cpp
View file @
b9cb5b97
...
@@ -129,6 +129,11 @@ void QmlJSObserverClient::setCurrentObjects(const QList<int> &debugIds) {
...
@@ -129,6 +129,11 @@ void QmlJSObserverClient::setCurrentObjects(const QList<int> &debugIds) {
if
(
!
m_connection
||
!
m_connection
->
isConnected
())
if
(
!
m_connection
||
!
m_connection
->
isConnected
())
return
;
return
;
if
(
debugIds
==
m_currentDebugIds
)
return
;
m_currentDebugIds
=
debugIds
;
QByteArray
message
;
QByteArray
message
;
QDataStream
ds
(
&
message
,
QIODevice
::
WriteOnly
);
QDataStream
ds
(
&
message
,
QIODevice
::
WriteOnly
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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