Replace asterisk with superscript s
This commit is contained in:
@@ -195,7 +195,7 @@ class FirepowerViewFull(StatsView):
|
||||
tooltipText = dpsToolTip(preSpoolVal, fullSpoolVal, prec, lowest, highest)
|
||||
label.SetLabel(valueFormat.format(
|
||||
formatAmount(val, prec, lowest, highest),
|
||||
"*" if tooltipText else ""))
|
||||
"\u02e2" if tooltipText else ""))
|
||||
label.SetToolTip(wx.ToolTip(tooltipText))
|
||||
self._cachedValues[counter] = val
|
||||
counter += 1
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -112,7 +112,7 @@ class OutgoingViewMinimal(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
|
||||
|
||||
@@ -133,7 +133,7 @@ class RechargeViewFull(StatsView):
|
||||
else:
|
||||
ttText = ""
|
||||
|
||||
lbl.SetLabel("{:.1f}{}".format(amount, "*" if ttText else ""))
|
||||
lbl.SetLabel("{:.1f}{}".format(amount, "\u02e2" if ttText else ""))
|
||||
lbl.SetToolTip(wx.ToolTip(ttText))
|
||||
unitlbl.SetToolTip(wx.ToolTip(ttText))
|
||||
|
||||
|
||||
Reference in New Issue
Block a user