Skip to content

Commit

Permalink
Fix for handling MolTableSelection that now implements IStructuredSel…
Browse files Browse the repository at this point in the history
…ection

Solves bug 331
  • Loading branch information
Arvid Berg committed Jul 6, 2010
1 parent 2ff40ce commit c6c83ec
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -124,11 +124,12 @@ public Object execute( ExecutionEvent event ) throws ExecutionException {
logger.warn( "Failed to save molecule. " + e.getMessage() );
}
}
}}else {
}else {
if(sel instanceof MolTableSelection) {
handleMolTableSelection( ((MolTableSelection)sel) ,event);
}
}
}
return null;
}

Expand Down

0 comments on commit c6c83ec

Please sign in to comment.