Fix money display

pull/111/head
Inex Code 2022-08-29 22:43:42 +04:00
parent 62db476575
commit 254604d584
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ class _ExtendingVolumePageState extends State<ExtendingVolumePage> {
_sizeController.text = _currentSliderGbValue.truncate().toString();
_priceController.text =
(_euroPerGb * double.parse(_sizeController.text))
.toStringAsPrecision(2);
.toStringAsFixed(2);
minSize = widget.diskVolumeToResize.sizeTotal;
if (_currentSliderGbValue < 0) {
_currentSliderGbValue = minSize.asGb();