1
0
mirror of https://github.com/oliexdev/openScale.git synced 2025-08-23 00:33:09 +02:00

Add a space after symbol in table diff to improve readability

This commit is contained in:
Erik Johansson
2018-01-29 20:38:00 +01:00
parent 30bfd48b9b
commit 9f57aed528

View File

@@ -268,7 +268,7 @@ public abstract class FloatMeasurementView extends MeasurementView {
color = "grey"; color = "grey";
} }
return String.format( return String.format(
"<font color='%s'>%s</font><font color='grey'><small>%s</small></font>", "<font color='%s'>%s</font> <font color='grey'><small>%s</small></font>",
color, symbol, formatValue(diff)); color, symbol, formatValue(diff));
} }