aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorache <ache@ache.one>2019-01-19 10:28:19 +0100
committerache <ache@ache.one>2019-01-19 10:28:19 +0100
commitdbb74c11fd9eccffcc440af32069b49524cb6952 (patch)
tree2f9c1da652b34ba90ede8da2d51ca95a26b37a0a
parentStat in contactWind (diff)
Don't color the text with the same color as the background
-rw-r--r--messageWind.c2
1 files changed, 1 insertions, 1 deletions
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]) {