Message2845

Author greg
Recipients
Date 2014-07-08.14:47:59
Content
It seems to be the desired effect. The code switch the font to "blue" when the
item has at least 1 socket. Else it default to the "neon" font.
Probably due to changes, but the variable names don't match anymore the actual
color (blue is gray and neon is blue).

From src/items.c:373
// If the item has upgrade sockets, use a different color for the name.
if (ShowItem->upgrade_sockets.size) {
	autostr_append(str, "%s", font_switchto_blue);
} else {
	autostr_append(str, "%s", font_switchto_neon);
}
History
Date User Action Args
2014-07-08 14:47:59gregsetmessageid: <1404830879.6.0.593604608512.issue726@freedroid.org>
2014-07-08 14:47:59greglinkissue726 messages
2014-07-08 14:47:59gregcreate