From 1630434b45b28ca62313668884a6039d84f4a135 Mon Sep 17 00:00:00 2001 From: mongo Date: Wed, 27 Jun 2018 11:05:00 -0300 Subject: CELL_NEGATIVE fix --- src/tui.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src') diff --git a/src/tui.c b/src/tui.c index 81998cd..97f78b3 100644 --- a/src/tui.c +++ b/src/tui.c @@ -810,6 +810,8 @@ void ui_show_content(WINDOW * win, int mxrow, int mxcol) { ui_set_ucolor(win, &ucolors[EXPRESSION]); } else if ((*p) && (*p)->label) { // string ui_set_ucolor(win, &ucolors[STRG]); + } else if ((*p) && (*p)->flags & is_valid && (*p)->v < 0) { // cell negative + ui_set_ucolor(win, &ucolors[CELL_NEGATIVE]); } else if ((*p) && (*p)->flags & is_valid && ! (*p)->format) { // numeric value ui_set_ucolor(win, &ucolors[NUMB]); } else if ((*p) && (*p)->format && (*p)->format[0] == 'd') { // date format -- cgit v1.2.3