File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
tools/SDKUpdater/src/processing/mode/android/tools Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 59
59
@ SuppressWarnings ("serial" )
60
60
public class SDKUpdater extends JFrame implements PropertyChangeListener , Tool {
61
61
final static private int DEF_NUM_ROWS = 10 ;
62
- final static private int DEF_COL_WIDTH = 200 ;
62
+ final static private int DEF_COL_WIDTH = 220 ;
63
63
private final Vector <String > columns = new Vector <>(Arrays .asList (
64
64
"Package name" , "Installed version" , "Available update" ));
65
65
private static final String PROPERTY_CHANGE_QUERY = "query" ;
@@ -381,7 +381,7 @@ public String getColumnName(int column) {
381
381
table .setAutoResizeMode (JTable .AUTO_RESIZE_ALL_COLUMNS );
382
382
Dimension dim = new Dimension (table .getColumnCount () * DEF_COL_WIDTH ,
383
383
table .getRowHeight () * DEF_NUM_ROWS );
384
- table .setPreferredSize (dim );
384
+ // table.setPreferredSize(dim);
385
385
table .setPreferredScrollableViewportSize (dim );
386
386
387
387
packagesPanel .add (new JScrollPane (table ));
You can’t perform that action at this time.
0 commit comments