Skip to content

Commit

Permalink
Merge pull request #388 from neph1/Fix_for_#350
Browse files Browse the repository at this point in the history
Fixes  Attempt to Link in SceneComposer results in'"NullPointerExcept…
  • Loading branch information
neph1 committed Oct 22, 2022
2 parents 015ddf4 + 381b116 commit fccc383
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -718,7 +718,9 @@ private void refreshSelected() {
java.awt.EventQueue.invokeLater(new Runnable() {

public void run() {
selectedExplorerNode.refresh(true); // rootNode doesn't seem to be recursive, TODO: Fix it.
if(selectedExplorerNode != null) {
selectedExplorerNode.refresh(true); // rootNode doesn't seem to be recursive, TODO: Fix it.
}
jmeRootNode.refresh(false);
}
});
Expand Down

0 comments on commit fccc383

Please sign in to comment.