Properly reset cell in amount column

This commit is contained in:
Christoph Atteneder 2018-08-13 10:38:07 +02:00
parent 70e086d414
commit 29414133fa
No known key found for this signature in database
GPG key ID: CD5DC1C529CDFD3B

View file

@ -591,7 +591,7 @@ public class TradesChartsView extends ActivatableViewAndModel<VBox, TradesCharts
setGraphic(new ColoredDecimalPlacesWithZerosText(formatter.formatCoin(item.getTradeAmount(),
4), GUIUtil.AMOUNT_DECIMALS_WITH_ZEROS));
else
setText("");
setGraphic(null);
}
};
}