This commit is contained in:
boccioli_m
2015-06-10 08:56:07 +02:00
parent f6a6c2f8f8
commit 6dac43770d

View File

@@ -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);
}
}