Skip to content

Commit

Permalink
Fixes Attempt to Link in SceneComposer results in'"NullPointerExcepti…
Browse files Browse the repository at this point in the history
…on' #350
  • Loading branch information
neph1 committed Sep 29, 2022
1 parent 9a015d5 commit 381b116
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 381b116

Please sign in to comment.