Revert "Bugfix width being offset by 1"

This reverts commit dd1834ad2b.
This commit is contained in:
Alessandro Proto 2023-02-20 20:16:25 +01:00
parent dd1834ad2b
commit aee3434b44

View file

@ -399,7 +399,7 @@ internal class Term : IComponent
L.ArgumentError(2, "number must be greater than 0"); L.ArgumentError(2, "number must be greater than 0");
} }
SetSize(w - 1, h); SetSize(w, h);
return 0; return 0;
} }