(svn r6931) -Codechange: Change textmessage format a bit. Only the sender's name and target are

in the sender's colour, the actual message is in white. Should improve readability.
This commit is contained in:
Darkvater
2006-10-24 22:19:12 +00:00
parent f48c419467
commit bc018eb7ac
3 changed files with 25 additions and 32 deletions

View File

@@ -1632,9 +1632,9 @@ static void ChatWindowWndProc(Window *w, WindowEvent *e)
case WE_PAINT: {
static const StringID chat_captions[] = {
STR_NETWORK_CHAT_ALL,
STR_NETWORK_CHAT_COMPANY,
STR_NETWORK_CHAT_CLIENT
STR_NETWORK_CHAT_ALL_CAPTION,
STR_NETWORK_CHAT_COMPANY_CAPTION,
STR_NETWORK_CHAT_CLIENT_CAPTION
};
StringID msg;
@@ -1642,7 +1642,6 @@ static void ChatWindowWndProc(Window *w, WindowEvent *e)
assert(GB(WP(w, querystr_d).caption, 0, 8) < lengthof(chat_captions));
msg = chat_captions[GB(WP(w, querystr_d).caption, 0, 8)];
SetDParam(0, STR_EMPTY);
DrawStringRightAligned(w->widget[2].left - 2, w->widget[2].top + 1, msg, 16);
DrawEditBox(w, &WP(w, querystr_d), 2);
} break;