NetBSD-Bugs archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

Re: lib/53653: Curses doesn't always show line drawing characters correctly on wsvt25



The following reply was made to PR lib/53653; it has been noted by GNATS.

From: Valery Ushakov <uwe%stderr.spb.ru@localhost>
To: gnats-bugs%NetBSD.org@localhost
Cc: 
Subject: Re: lib/53653: Curses doesn't always show line drawing characters
 correctly on wsvt25
Date: Sun, 7 Oct 2018 05:05:05 +0300

 The code to draw the box is in dlg_draw_box2() in uitl.c and it
 basically does:
 
     waddch(win, borderchar | ACS_ULCORNER);
     waddch(win, borderchar | ACS_HLINE);
     ...
     /* this next one will be wrong */
     waddch(win, borderchar2 | ACS_URCORNER);
 
 where borderchar is a combination of optional A_BOLD and
 COLOR_PAIR()
 
 -uwe
 


Home | Main Index | Thread Index | Old Index