Console: Replace triangle icons with ** on the new peers tab

Can't get the icons to look nice
This commit is contained in:
zzz
2023-01-03 09:29:32 -05:00
parent 513a33abe6
commit 67c09c69f0

View File

@@ -238,7 +238,7 @@ public class PeerHelper extends HelperBase {
total += counts[idx + i]; total += counts[idx + i];
} }
if (total <= 0) if (total <= 0)
buf.append("<img src=\"themes/console/images/info/infowarn.png\"> "); buf.append("<b>**</b> ");
else else
totals[0] += total; totals[0] += total;
buf.append(total); buf.append(total);
@@ -251,7 +251,7 @@ public class PeerHelper extends HelperBase {
buf.append("</td><td align=\"center\">"); buf.append("</td><td align=\"center\">");
if (cnt <= 0) { if (cnt <= 0) {
if ((i & 0x01) != 0 || warnInbound) if ((i & 0x01) != 0 || warnInbound)
buf.append("<img src=\"themes/console/images/info/infohelp.png\"> "); buf.append("<b>**</b> ");
} else { } else {
totals[i + 1] += cnt; totals[i + 1] += cnt;
} }
@@ -271,7 +271,7 @@ public class PeerHelper extends HelperBase {
buf.append("</th><th align=\"center\">"); buf.append("</th><th align=\"center\">");
if (cnt <= 0) { if (cnt <= 0) {
if ((i & 0x01) == 0 || warnInbound) if ((i & 0x01) == 0 || warnInbound)
buf.append("<img src=\"themes/console/images/info/infowarn.png\"> "); buf.append("<b>**</b> ");
} }
buf.append("<b>").append(cnt).append("</b"); buf.append("<b>").append(cnt).append("</b");
} }