From dbb74c11fd9eccffcc440af32069b49524cb6952 Mon Sep 17 00:00:00 2001 From: ache Date: Sat, 19 Jan 2019 10:28:19 +0100 Subject: Don't color the text with the same color as the background --- messageWind.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/messageWind.c b/messageWind.c index 98b2838..ca9d3a1 100644 --- a/messageWind.c +++ b/messageWind.c @@ -70,7 +70,7 @@ int show1SMS(sms* S, int y_base, int* hasFinish) { *hasFinish = 1; - attrset( COLOR_PAIR( (rand()%8) + 1) | A_BOLD); + attrset( COLOR_PAIR( (rand()%8) + 2) | A_BOLD); while( S->text[iS] ) { x = 0; while( x < w_WMessageSMS-1 && S->text[iS]) { -- cgit v1.2.3