diff --git a/plugins/TestingList.java b/plugins/TestingList.java index 3308045..bc5c7e7 100644 --- a/plugins/TestingList.java +++ b/plugins/TestingList.java @@ -152,11 +152,11 @@ public class TestingList extends Panel { ImageIcon icon = new ImageIcon(getClass().getResource(iconSource)); jTable1.setValueAt(icon, rowD, COL_ICON); - if (colT > 0 && rowD > 0) { + if (colT >= 0 && rowD >= 0) { jTable1.setValueAt(getNow(), rowD, COL_TIME); jTable1.setValueAt(res, rowD, COL_RESULT); jTable1.setValueAt(status, rowD, COL_STATUS); - jTable1.getCellEditor(rowD, COL_STATUS); + //jTable1.getCellEditor(rowD, COL_STATUS); } }