From 4d642d85e904ae1ee568d7b493bb045ba3c25460 Mon Sep 17 00:00:00 2001 From: Chip Black Date: Sun, 11 Sep 2011 23:49:52 -0500 Subject: [PATCH] Fix Munch size change --- hacks/Munch/Munch.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/hacks/Munch/Munch.js b/hacks/Munch/Munch.js index aa858ce..7c75a50 100644 --- a/hacks/Munch/Munch.js +++ b/hacks/Munch/Munch.js @@ -52,6 +52,9 @@ enyo.kind({ if (this.displayStyle == 0) { this.display.width = this.w = w; this.display.height = this.h = h; + } else { + this.display.width = 512; + this.display.height = 512; } }, -- 2.25.1