--- src/icqface.cc.orig Sun Aug 28 05:33:21 2005 +++ src/icqface.cc Sun Mar 18 22:27:33 2007 @@ -217,9 +217,14 @@ protocolname pname; icqconf::imaccount ia; + int invis = 0; + for(pname = icq; pname != protocolname_size; pname++) { ia = conf.getourid(pname); + if (imstatus2char[gethook(pname).getstatus()] == 'i') + invis = 1; + if(!ia.empty()) { buf += " "; buf += conf.getprotocolname(pname) + ":"; @@ -230,7 +235,7 @@ attrset(conf.getcolor(cp_status)); mvhline(0, 0, ' ', COLS); - mvprintw(0, 0, _(" CENTERICQ %s UNSENT: %lu"), VERSION, em.getunsentcount()); + mvprintw(0, 0, _(" CENTERICQ %s UNSENT: %lu%s"), VERSION, em.getunsentcount(), invis ? " ---===<<< YOU'RE FUCKING INVISIBLE!!! >>>===---" : ""); mvprintw(0, COLS-buf.size()-1, "%s", buf.c_str()); }