Bugfix width being offset by 1

This commit is contained in:
Alessandro Proto 2023-02-20 20:13:51 +01:00
parent 12272f13ab
commit dd1834ad2b

View file

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