Replace asterisk with superscript s

This commit is contained in:
DarkPhoenix
2018-12-13 14:54:23 +03:00
parent ba12d97c1d
commit f48ce43c0c
4 changed files with 4 additions and 4 deletions

View File

@@ -113,7 +113,7 @@ class OutgoingViewFull(StatsView):
hasSpool, tooltipText = formatTooltip(tooltip, preSpoolVal, fullSpoolVal, prec, lowest, highest)
label.SetLabel(valueFormat.format(
formatAmount(val, prec, lowest, highest),
"*" if hasSpool else ""))
"\u02e2" if hasSpool else ""))
label.SetToolTip(wx.ToolTip(tooltipText))
self._cachedValues[counter] = val
counter += 1