Skip to content
Snippets Groups Projects
Verified Commit da65cb8a authored by dos's avatar dos
Browse files

fil3s: Limit line length to 10k characters

parent f5b8244d
No related branches found
No related tags found
1 merge request!639fil3s: Draw each line of text in Reader separately
Pipeline #12614 passed
......@@ -182,7 +182,7 @@ class Reader(ActionView):
if y > 120 + line_height or y < -120 - line_height:
continue
ctx.move_to(x, y)
ctx.text(line)
ctx.text(line[:10240])
ctx.restore()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment