From 1dfe5bccea4b40ef1b20d3904567d64887e0d2eb Mon Sep 17 00:00:00 2001 From: Rodrigo Braz Monteiro Date: Wed, 22 Mar 2006 00:25:47 +0000 Subject: [PATCH] Fixed the fonts collector's behavior with \fn Originally committed to SVN as r236. --- core/changelog.txt | 1 + core/fonts_collector.cpp | 2 ++ 2 files changed, 3 insertions(+) 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(); } } }