Set end times to zero when pasting plain text. Closes #1570.

This commit is contained in:
Thomas Goyne 2013-01-17 14:04:50 -08:00
parent cbbcc35e4f
commit 89a431a68b

View file

@ -113,6 +113,7 @@ void paste_lines(agi::Context *c, bool paste_over, Paster&& paste_line) {
// Line didn't parse correctly, assume it's plain text that
// should be pasted in the Text field only
curdiag = new AssDialogue;
curdiag->End = 0;
curdiag->Text = curdata;
}