Closedown

This commit is contained in:
boccioli_m
2015-06-08 16:57:45 +02:00
parent ea4dfbdeba
commit 391adf2211
2 changed files with 4 additions and 2 deletions

View File

@@ -182,7 +182,7 @@ public class TestingList extends Panel {
return canEdit [columnIndex];
}
});
jTable1.setRowHeight(20);
jTable1.setRowHeight(22);
jTable1.addMouseListener(new java.awt.event.MouseAdapter() {
public void mouseClicked(java.awt.event.MouseEvent evt) {
jTable1MouseClicked(evt);
@@ -295,6 +295,8 @@ public class TestingList extends Panel {
model.addRow(new Object[] {false, sDate, "MWD", "Display Test", "Sequence terminated", "Pending", icon});
model.addRow(new Object[] {false, sDate, "FIXL", "Lamp Test", "Failure", "Pending", icon});
jTable1.setModel(model);
jTable1.getColumnModel().getColumn(0).setPreferredWidth(27);
jTable1.getColumnModel().getColumn(6).setPreferredWidth(27);
updateStatus();
}