diff --git a/trunk/siprp/importer/Importer.java b/trunk/siprp/importer/Importer.java index 3c446715..e725452e 100644 --- a/trunk/siprp/importer/Importer.java +++ b/trunk/siprp/importer/Importer.java @@ -125,6 +125,16 @@ public class Importer extends CustomJDialog Virtual2DTableModel tm = new Virtual2DTableModel( colNames, null ); tm.setValues( e2da ); table = new BaseTable( tm ); + switch( type ) + { + case TYPE_ADMISSAO: + table.fixColumnWidth( DEFAULT_SELECTION[ 0 ], 120 ); + break; + + case TYPE_DEMISSAO: + table.fixColumnWidth( DEFAULT_SELECTION_DEMISSAO[ 0 ], 120 ); + break; + } if( !multipleSelection ) { table.getSelectionModel().setSelectionMode( ListSelectionModel.SINGLE_SELECTION );