diff --git a/core/changelog.txt b/core/changelog.txt index 02a37fa6d..107274be6 100644 --- a/core/changelog.txt +++ b/core/changelog.txt @@ -71,6 +71,7 @@ Please visit http://aegisub.net to download latest version - Added a bias slider to the "make times continuous" function in timing post-processor, which sets the point between the subs where the two lines will meet. (AMZ) - Separated keyframe thresholds on the timing post-processor in start and end. (AMZ) + = 1.09 beta - 2006.01.16 =========================== - Implemented Timing Post-Processor dialog to automatically add lead-in/lead-out, scene timing and adjascence adjustment for sharp-timed subs (AMZ) diff --git a/core/fonts_collector.cpp b/core/fonts_collector.cpp index 6e0dd9bc5..fdf85a8bc 100644 --- a/core/fonts_collector.cpp +++ b/core/fonts_collector.cpp @@ -318,7 +318,9 @@ void FontsCollectorThread::Collect() { curDiag = AssEntry::GetAsDialogue(*cur); if (curDiag) { curLine++; + curDiag->ParseASSTags(); curDiag->ProcessParameters(GetFonts); + curDiag->ClearBlocks(); } } }