From b265d1fa0e2c6a6311e0f5df82cd02a66c309263 Mon Sep 17 00:00:00 2001 From: Thomas Goyne Date: Sat, 18 Aug 2012 03:13:31 +0000 Subject: [PATCH] Actually set the actor when reading from txt files Originally committed to SVN as r6956. --- aegisub/src/subtitle_format_txt.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aegisub/src/subtitle_format_txt.cpp b/aegisub/src/subtitle_format_txt.cpp index 5ae728053..e6f460a3d 100644 --- a/aegisub/src/subtitle_format_txt.cpp +++ b/aegisub/src/subtitle_format_txt.cpp @@ -117,7 +117,7 @@ void TXTSubtitleFormat::ReadFile(AssFile *target, wxString const& filename, wxSt // Sets line up AssDialogue *line = new AssDialogue; - line->Actor = isComment ? "" : line->Actor; + line->Actor = isComment ? "" : actor; line->Comment = isComment; line->Text = value; line->End = 0;