We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f70ab9c commit dd274b9Copy full SHA for dd274b9
ProcessPreviousLine.cpp
@@ -696,13 +696,14 @@ assemble the full text of the original line.
696
m_pLinePositions [m_LineList.GetCount () / JUMP_SIZE] = NULL;
697
698
// version 4.54 - keep notes, even if omitted from output ;)
699
+ // version 4.72 - also player input
700
701
// we have to push_front because we are going through the lines backwards
702
// this means the newline goes first. Also we process the styles in reverse order.
703
704
CLine* pLine = m_LineList.GetTail ();
705
- if (pLine->flags & COMMENT)
706
+ if (pLine->flags & NOTE_OR_COMMAND)
707
{
708
CString strLine = CString (pLine->text, pLine->len);
709
int iCol = 0;
0 commit comments