diff --git a/scripts/developer/utilities/audio/Stream.qml b/scripts/developer/utilities/audio/Stream.qml index 71e4b9eedf..602bccc222 100644 --- a/scripts/developer/utilities/audio/Stream.qml +++ b/scripts/developer/utilities/audio/Stream.qml @@ -58,11 +58,11 @@ ColumnLayout { } Value { label: "Overall" - source: stream.lossRate + "% (" + stream.lossCount + " lost)" + source: stream.lossRate.toFixed(2) + "% (" + stream.lossCount + " lost)" } Value { label: "Window" - source: stream.lossRateWindow + "% (" + stream.lossCountWindow + " lost)" + source: stream.lossRateWindow.toFixed(2) + "% (" + stream.lossCountWindow + " lost)" } }