Skip to content
Snippets Groups Projects
Commit 0f97e3b5 authored by David Adam's avatar David Adam
Browse files

client: stop using bold for items that cannot be chosen

They're less important, not more important!
parent dc0b1427
Branches
1 merge request!3client fixes
......@@ -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;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment