This commit is contained in:
boccioli_m
2015-06-23 11:06:49 +02:00
parent e6eed5efc1
commit ecd1cc4572

View File

@@ -696,6 +696,10 @@ public class TestingList extends Panel {
jTable1.getColumnModel().getColumn(COL.STATUS.ordinal()).setPreferredWidth(30);
jTable1.getColumnModel().getColumn(COL.TESTPATH.ordinal()).setMinWidth(0);
jTable1.getColumnModel().getColumn(COL.TESTPATH.ordinal()).setMaxWidth(0);
jTable1.getColumnModel().getColumn(COL.TESTDESCR.ordinal()).setMinWidth(0);
jTable1.getColumnModel().getColumn(COL.TESTDESCR.ordinal()).setMaxWidth(0);
jTable1.getColumnModel().getColumn(COL.TESTPARAMS.ordinal()).setMinWidth(0);
jTable1.getColumnModel().getColumn(COL.TESTPARAMS.ordinal()).setMaxWidth(0);
jTable1.setAutoCreateRowSorter(true);
updateStatus();
}