Fix flickering

This commit is contained in:
momo5502
2025-07-07 15:23:09 +02:00
parent baf2ed6772
commit 889336252b

View File

@@ -217,8 +217,8 @@ export class Output extends React.Component<OutputProps, FullOutputState> {
}
this.setState({
width: this.outputRef.current.offsetWidth,
height: this.outputRef.current.offsetHeight,
width: this.outputRef.current.offsetWidth - 1,
height: this.outputRef.current.offsetHeight - 1,
});
}