mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-24 23:18:17 +01:00
Merge pull request #1475 from ripcurlx/fix-total-amount-duplication-in-spread-view
Add missing parenthesis
This commit is contained in:
commit
b4ee6c19a7
1 changed files with 2 additions and 1 deletions
|
@ -275,9 +275,10 @@ public class SpreadView extends ActivatableViewAndModel<GridPane, SpreadViewMode
|
|||
super.updateItem(item, empty);
|
||||
if (item != null && !empty)
|
||||
setGraphic(new ColoredDecimalPlacesWithZerosText(model.getAmount(item.totalAmount), GUIUtil.AMOUNT_DECIMALS_WITH_ZEROS));
|
||||
else
|
||||
else {
|
||||
setText("");
|
||||
setGraphic(null);
|
||||
}
|
||||
}
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue