* Add another year est regex

* Add queue file support
This commit is contained in:
Bryan Ashby 2016-10-14 21:57:02 -06:00
parent 1ef546d569
commit 712cf512f0
4 changed files with 33 additions and 19 deletions

View file

@ -102,7 +102,7 @@ function TextView(options) {
renderLength = renderStringLength(textToDraw);
if(renderLength > this.dimens.width) {
if(renderLength >= this.dimens.width) {
if(this.hasFocus) {
if(this.horizScroll) {
textToDraw = renderSubstr(textToDraw, renderLength - this.dimens.width, renderLength);