force fg on block optimisation

This commit is contained in:
Hugh Bord 2022-08-28 17:51:56 +08:00
förälder 1c39c90eb0
incheckning 3b98d268b2

Visa fil

@ -436,7 +436,7 @@ export const exportMirc = (blocks = null) => {
// optimise out half or full blocks with same bg and fg, to save width space on export
if (curBlock.fg === curBlock.bg && optimiseArray.includes(curBlock.char)) {
curBlock.fg = undefined;
curBlock.fg = 0;
curBlock.char = " ";
}