Don't cache true colors

If a true color has been set it will have code -1 regardless of the
actual color. Therefore, it shouldn't be stored in the color cache
dictionary otherwise all true color cells will be colored the most
recently set value.


Former-commit-id: 0d14fd1e47
This commit is contained in:
Leroy Hopson 2020-09-28 16:13:26 +07:00
parent 5a487a67c2
commit cc457b8b9a

View file

@ -493,7 +493,7 @@ std::pair<Color, Color> Terminal::get_cell_colors(int row, int col)
fb = (float)cell.attr.fb / 255.0;
fgcol = Color(fr, fg, fb);
if (cell.attr.fccode)
if (cell.attr.fccode != -1)
{
palette.insert(std::pair<int, Color>(cell.attr.fccode, Color(fr, fg, fb)));
}
@ -512,7 +512,7 @@ std::pair<Color, Color> Terminal::get_cell_colors(int row, int col)
bb = (float)cell.attr.bb / 255.0;
bgcol = Color(br, bg, bb);
if (cell.attr.bccode)
if (cell.attr.bccode != -1)
{
palette.insert(std::pair<int, Color>(cell.attr.bccode, Color(br, bg, bb)));
}