From 795fca23dc6cf124b2e6969ee42bd8e7c836d605 Mon Sep 17 00:00:00 2001 From: samhed Date: Tue, 11 Nov 2014 16:29:06 +0100 Subject: [PATCH] Modify minimum width of clear to accomodate smaller screens --- include/display.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/display.js b/include/display.js index 1006c366..a42b854a 100644 --- a/include/display.js +++ b/include/display.js @@ -318,7 +318,7 @@ var Display; // Clearing the current viewport first fixes the issue this._drawCtx.clearRect(0, 0, this._viewportLoc.w, this._viewportLoc.h); } - this.resize(640, 20); + this.resize(240, 20); this._drawCtx.clearRect(0, 0, this._viewportLoc.w, this._viewportLoc.h); }