Remove outdated comment

This commit is contained in:
Pyrex 2023-09-10 19:18:51 -07:00
parent 8b8006d4cb
commit 5b424cf864

View File

@ -25,8 +25,7 @@ class TerminalCustomPainter extends CustomPainter {
virtualPaint(virtualCanvas, smallSize);
var image = pr
.endRecording()
// Renderer does something bizarre if I don't multiply by something greater than 1
.toImageSync(cellW * Terminal.width * 1, cellH * Terminal.height * 1);
.toImageSync(cellW * Terminal.width, cellH * Terminal.height);
double x0, y0, xSz, ySz;
(x0, y0) = (0.0, 0.0);