Sort by manufacturer by default

This commit is contained in:
SiboVG 2022-05-26 01:32:37 +02:00
parent c4ffc663bf
commit cdf8594f5b

View File

@ -154,6 +154,7 @@ public class ComponentPresetTable extends JTable {
this.setModel(tableModel);
this.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
this.setRowSorter(sorter);
sorter.toggleSortOrder(2); // Sort by the first column (manufacturer) by default
for ( TableColumn hiddenColumn : hiddenColumns ) {
tableColumnModel.setColumnVisible(hiddenColumn, false);