eirikbakke commented on a change in pull request #2410:
URL: https://github.com/apache/netbeans/pull/2410#discussion_r500741361
##########
File path:
platform/openide.explorer/src/org/openide/explorer/view/OutlineView.java
##########
@@ -876,6 +880,9 @@ final void synchronizeSelectedNodes(boolean scroll, Node...
nodes) {
}
}
}
+ // [NETBEANS-4857]: re-activate property change events
+ outline.getSelectionModel().addListSelectionListener(managerListener);
Review comment:
But shouldn't there be at least one event processed in the end?
Might it be better to do
outline.getSelectionModel().setValueIsAdjusting(true) at the beginning and
setValueIsAdjusting(false) at the end? Does this work?
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists