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
No related merge requests found
...@@ -182,7 +182,7 @@ class Reader(ActionView): ...@@ -182,7 +182,7 @@ class Reader(ActionView):
if y > 120 + line_height or y < -120 - line_height: if y > 120 + line_height or y < -120 - line_height:
continue continue
ctx.move_to(x, y) ctx.move_to(x, y)
ctx.text(line) ctx.text(line[:10240])
ctx.restore() ctx.restore()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment