to avoid status confusion
./src/src/qt/res/icons/connect4_16.png
to avoid status confusion
./src/src/qt/res/icons/connect4_16.png
Network icon 4 shouldnt be all green bars because if you only have 8 connections (ie no incoming connections), your connection is misconfigured. You should either enable UPnP in the client and on your router, or forward port 8333 manually. Though that should be made clear.
Matt, 4 is the highest one, the one you get when you have 10 connections.
switch(count)
{
case 0: icon = ":/icons/connect_0"; break;
case 1: case 2: case 3: icon = ":/icons/connect_1"; break;
case 4: case 5: case 6: icon = ":/icons/connect_2"; break;
case 7: case 8: case 9: icon = ":/icons/connect_3"; break;
default: icon = ":/icons/connect_4"; break;
}
Oh, I thought it went to 5, sorry...
network icon 4 is used from 10 connections on, so it implies you have incoming connections.
That said, I prefer 4 bars, red orange yellow green, being enabled one by one.