Skip to content

Commit

Permalink
Fixed bug where ColourNote during omit from output would jumble text
Browse files Browse the repository at this point in the history
  • Loading branch information
nickgammon committed Aug 29, 2010
1 parent 171eaa3 commit 99c6eea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ProcessPreviousLine.cpp
Expand Up @@ -724,7 +724,7 @@ assemble the full text of the original line.
GetStyleRGB (pStyle, cText, cBack);

m_OutstandingLines.push_front (CPaneStyle ((const char *)
strLine.Mid (iCol, pStyle->iLength),
strLine.Mid (pLine->len - pStyle->iLength - iCol, pStyle->iLength),
cText, cBack, pStyle->iFlags & 7));
iCol += pStyle->iLength; // new column
} // end of each style
Expand Down

0 comments on commit 99c6eea

Please sign in to comment.