Fix RTL ByteSize rendering.

This commit is contained in:
Cody Henthorne
2025-09-24 16:29:57 -04:00
committed by Jeffrey Starke
parent 6e867d678c
commit 58304a0fb6
@@ -93,7 +93,7 @@ class ByteSize(val bytes: Long) {
}
}
return "${formatter.format(size)}${if (spaced) " " else ""}${unit.label}"
return BidiUtil.forceLtr("${formatter.format(size)}${if (spaced) " " else ""}${unit.label}")
}
operator fun compareTo(other: ByteSize): Int {