There is somehow a bug in storeColumnPreferences
Even when I change the sort oder of one column
From debugging I noticed it's always empty and this is the root issue why the export does not take into account the current table order
|
putStringList(COLUMN_SORT_ORDER, columnPreferences |
|
.getColumnSortOrder().stream() |
|
.map(MainTableColumnModel::getName) |
|
.collect(Collectors.toList())); |
There is somehow a bug in storeColumnPreferences
Even when I change the sort oder of one column
From debugging I noticed it's always empty and this is the root issue why the export does not take into account the current table order
jabref/src/main/java/org/jabref/preferences/JabRefPreferences.java
Lines 1932 to 1935 in 2c7715c