From 0f97e3b5fdf5886d00cd9c4d4851fd57e32dae46 Mon Sep 17 00:00:00 2001 From: David Adam <zanchey@ucc.gu.uwa.edu.au> Date: Tue, 9 Jul 2024 14:29:57 +0800 Subject: [PATCH] client: stop using bold for items that cannot be chosen They're less important, not more important! --- src/client/menu.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/client/menu.c b/src/client/menu.c index 56df5dc..88e555f 100644 --- a/src/client/menu.c +++ b/src/client/menu.c @@ -340,7 +340,6 @@ int ShowItemAt(int Row, int Col, int Width, int Index, int bHilighted) printw("-> "); } else if( price > giUserBalance ) { - attrset(A_BOLD); color_set( COLOURPAIR_CANTBUY, NULL ); printw(" "); } @@ -350,7 +349,6 @@ int ShowItemAt(int Row, int Col, int Width, int Index, int bHilighted) } break; case ITEM_STATUS_SOLDOUT: - attrset(A_BOLD); color_set( COLOURPAIR_CANTBUY, NULL ); printw("SLD "); break; -- GitLab