Skip to content

Commit

Permalink
0005297: Automatically set column width in SQL Explorer results grid
Browse files Browse the repository at this point in the history
  • Loading branch information
evan-miller-jumpmind committed May 11, 2022
1 parent ba7913e commit 5c7101f
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -739,7 +739,7 @@ protected Grid<List<Object>> putResultsInGrid(int maxResultSize) throws SQLExcep
return "italics";
}
return null;
}).setResizable(true), columnName);
}).setResizable(true).setAutoWidth(true), columnName);
valueProviderMap.put(grid.getColumnByKey(columnName), row -> row.get(colNum));
types[columnCounter[0] - 1] = meta.getColumnType(columnCounter[0]);
} else {
Expand Down

0 comments on commit 5c7101f

Please sign in to comment.