mirror of
https://github.com/sparrowwallet/sparrow.git
synced 2024-12-23 20:36:44 +00:00
reverse sort order of date column in utxos tab
This commit is contained in:
parent
472fccc788
commit
8d28f8f0a9
1 changed files with 1 additions and 0 deletions
|
@ -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");
|
||||
|
|
Loading…
Reference in a new issue