I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Unverified Commit 67c09c69 authored by zzz's avatar zzz
Browse files

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

Can't get the icons to look nice
parent 513a33ab
No related branches found
No related tags found
No related merge requests found
......@@ -238,7 +238,7 @@ public class PeerHelper extends HelperBase {
total += counts[idx + i];
}
if (total <= 0)
buf.append("<img src=\"themes/console/images/info/infowarn.png\"> ");
buf.append("<b>**</b> ");
else
totals[0] += total;
buf.append(total);
......@@ -251,7 +251,7 @@ public class PeerHelper extends HelperBase {
buf.append("</td><td align=\"center\">");
if (cnt <= 0) {
if ((i & 0x01) != 0 || warnInbound)
buf.append("<img src=\"themes/console/images/info/infohelp.png\"> ");
buf.append("<b>**</b> ");
} else {
totals[i + 1] += cnt;
}
......@@ -271,7 +271,7 @@ public class PeerHelper extends HelperBase {
buf.append("</th><th align=\"center\">");
if (cnt <= 0) {
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");
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment