forked from mia/Aegisub
Skip empty lines in the kanji timer
This commit is contained in:
parent
98048c135a
commit
bb89378b7f
1 changed files with 1 additions and 1 deletions
|
@ -678,7 +678,7 @@ static AssEntry *find_next(Iterator from, Iterator to, std::string const& style_
|
|||
for (; from != to; ++from)
|
||||
{
|
||||
AssDialogue *dlg = dynamic_cast<AssDialogue*>(&*from);
|
||||
if (dlg && dlg->Style == style_name)
|
||||
if (dlg && dlg->Style == style_name && !dlg->Text.get().empty())
|
||||
return dlg;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue