git-svn-id: svn://db.shs.com.ru/pip@769 12ceb7fc-bf1f-11e4-8940-5bc7170c53b5

This commit is contained in:
2019-03-10 14:47:20 +00:00
parent 2ea8eed980
commit 5f0814c058

View File

@@ -537,7 +537,11 @@ void PITerminal::applyEscSeq(PIString es) {
case 6: cfl = PIScreenTypes::Cyan; break;
case 7: cfl = PIScreenTypes::White; break;
}
(target ? PRIVATE->cur_format.color_back : PRIVATE->cur_format.color_char) = cfl; break;
if (target)
PRIVATE->cur_format.color_back = cfl;
else
PRIVATE->cur_format.color_char = cfl;
break;
}
} break;
}