mirror of
https://github.com/sparrowwallet/sparrow.git
synced 2026-08-10 08:37:05 +00:00
reverse sort order of date column in utxos tab
This commit is contained in:
@@ -24,6 +24,7 @@ public class UtxosTreeTable extends CoinTreeTable {
|
||||
});
|
||||
dateCol.setCellFactory(p -> new DateCell());
|
||||
dateCol.setSortable(true);
|
||||
dateCol.setComparator((o1, o2) -> (int) (o2.getValue() - o1.getValue()));
|
||||
getColumns().add(dateCol);
|
||||
|
||||
TreeTableColumn<Entry, Entry> outputCol = new TreeTableColumn<>("Output");
|
||||
|
||||
Reference in New Issue
Block a user