# HG changeset patch # User Sadrul Habib Chowdhury # Date 1160873315 0 # Node ID 9baeeaa365d18e7f3204fa7ec5f1f33ca0aeca6a # Parent f93d632ac8d839a03501b0771c9656924a7e71f5 [gaim-migrate @ 17482] Patch from Richard Nelson (wabz). This turns off some flags so that the empty spaces at the end of the lines do not have underlines or blinking. committer: Tailor Script diff -r f93d632ac8d8 -r 9baeeaa365d1 console/libgnt/gnttextview.c --- a/console/libgnt/gnttextview.c Sat Oct 14 18:28:22 2006 +0000 +++ b/console/libgnt/gnttextview.c Sun Oct 15 00:48:35 2006 +0000 @@ -51,10 +51,10 @@ *end = '\0'; wattrset(widget->window, seg->flags); wprintw(widget->window, "%s", (view->string->str + seg->start)); - if (!iter->next) - whline(widget->window, ' ' | seg->flags, widget->priv.width - line->length - 1); *end = back; } + wattroff(widget->window, A_UNDERLINE | A_BLINK | A_REVERSE); + whline(widget->window, ' ', widget->priv.width - line->length - 1); } scrcol = widget->priv.width - 1;