提交 6d9a35c5 编写于 作者: S Serge Rider

NPE fix

上级 888e0cca
......@@ -247,8 +247,11 @@ public class SearchMetadataPage extends AbstractSearchPage {
typesTable.addMouseListener(new MouseAdapter() {
@Override
public void mouseDoubleClick(MouseEvent e) {
TableItem tableItem = typesTable.getSelection()[0];
tableItem.setChecked(!tableItem.getChecked());
TableItem[] selection = typesTable.getSelection();
if (selection.length > 0) {
TableItem tableItem = selection[0];
tableItem.setChecked(!tableItem.getChecked());
}
}
});
typesTable.setLayoutData(new GridData(GridData.FILL_BOTH));
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册