Fix code copy start range, closes #720
parent
05515d225a
commit
84e0220ea6
|
@ -1902,7 +1902,10 @@ void CEdit::GetIndentedText(std::ostream& stream, unsigned int start, unsigned i
|
|||
line++;
|
||||
}
|
||||
|
||||
stream << m_text[i];
|
||||
if (i >= start)
|
||||
{
|
||||
stream << m_text[i];
|
||||
}
|
||||
|
||||
i ++;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue