From 889336252b840b806a17261bb8122095def6be67 Mon Sep 17 00:00:00 2001 From: momo5502 Date: Mon, 7 Jul 2025 15:23:09 +0200 Subject: [PATCH] Fix flickering --- page/src/components/output.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/page/src/components/output.tsx b/page/src/components/output.tsx index a9c3677d..04c403a8 100644 --- a/page/src/components/output.tsx +++ b/page/src/components/output.tsx @@ -217,8 +217,8 @@ export class Output extends React.Component { } this.setState({ - width: this.outputRef.current.offsetWidth, - height: this.outputRef.current.offsetHeight, + width: this.outputRef.current.offsetWidth - 1, + height: this.outputRef.current.offsetHeight - 1, }); }