fixed marginal width geometry

This commit is contained in:
TDaglis
2015-11-10 18:27:17 +02:00
parent 41fd20c6e4
commit 3f0b584f25
+1 -1
View File
@@ -50,7 +50,7 @@
subjectRow.innerHTML = contentBuffer;
rows = parseInt(availableHeight / characterHeight);
cols = parseInt(availableWidth / characterWidth);
cols = parseInt(availableWidth / characterWidth) - 1;
geometry = {cols: cols, rows: rows};
return geometry;