mirror of https://github.com/odrling/Aegisub
Some debug.out calls in furigana layout code were missing trace level.
Originally committed to SVN as r1450.
This commit is contained in:
parent
9ab2d1c7fe
commit
5785cd191e
|
@ -411,7 +411,7 @@ function karaskel.do_furigana_layout(meta, styles, line)
|
|||
-- Add this syllable to lg
|
||||
lg.basewidth = lg.basewidth + syl.prespacewidth + syl.width + syl.postspacewidth
|
||||
table.insert(lg.syls, syl)
|
||||
aegisub.debug.out("\tAdding syllable to layout group: '%s', width=%d, isbreak=%s\n", syl.text_stripped, syl.width, syl.furi.n > 0 and syl.furi[1].isbreak and "y" or "n")
|
||||
aegisub.debug.out(5, "\tAdding syllable to layout group: '%s', width=%d, isbreak=%s\n", syl.text_stripped, syl.width, syl.furi.n > 0 and syl.furi[1].isbreak and "y" or "n")
|
||||
|
||||
-- Add this syllable's furi to lg
|
||||
for f = 1, syl.furi.n do
|
||||
|
@ -419,7 +419,7 @@ function karaskel.do_furigana_layout(meta, styles, line)
|
|||
lg.furiwidth = lg.furiwidth + furi.width
|
||||
lg.spillback = lg.spillback or furi.spillback
|
||||
table.insert(lg.furi, furi)
|
||||
aegisub.debug.out("\tAdding furigana to layout group: %s (width=%d)\n", furi.text, furi.width)
|
||||
aegisub.debug.out(5, "\tAdding furigana to layout group: %s (width=%d)\n", furi.text, furi.width)
|
||||
last_had_furi = true
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue