mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 08:43:19 -04:00
Bug fixed:
when refreshing standouted line curses outputs SO for all characters Submitted by: ZW6T-KND@j.asahi-net.or.jp
This commit is contained in:
parent
6052587146
commit
53e1aa653e
1 changed files with 2 additions and 2 deletions
|
|
@ -337,8 +337,8 @@ makech(win, wy)
|
|||
}
|
||||
|
||||
/* Enter/exit standout mode as appropriate. */
|
||||
if (SO && (nsp->attr & __STANDOUT) !=
|
||||
(curscr->flags & __WSTANDOUT)) {
|
||||
if (SO && !(nsp->attr & __STANDOUT) !=
|
||||
!(curscr->flags & __WSTANDOUT)) {
|
||||
if (nsp->attr & __STANDOUT) {
|
||||
tputs(SO, 0, __cputchar);
|
||||
curscr->flags |= __WSTANDOUT;
|
||||
|
|
|
|||
Loading…
Reference in a new issue