Skip to content

Commit

Permalink
Only refresh outline if it exist
Browse files Browse the repository at this point in the history
Sovles bug 3438
  • Loading branch information
goglepox committed Nov 15, 2012
1 parent 235463f commit ae9f79e
Showing 1 changed file with 3 additions and 1 deletion.
Expand Up @@ -403,7 +403,9 @@ private void insert(ICDKMolecule... molecules) {
else
input.instert( molecules );
setDirty( true );
outlinePage.setInput( input);
if(outlinePage!=null) {
outlinePage.setInput( input);
}
refresh();
}

Expand Down

0 comments on commit ae9f79e

Please sign in to comment.