From 90f041c911dec335dac47c103cd6f612e4aeda26 Mon Sep 17 00:00:00 2001 From: Alessandro Bianco Date: Thu, 20 Nov 2014 14:46:13 +0000 Subject: [PATCH] [html5] Honour the requested width and height requested --- lime/system/System.hx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lime/system/System.hx b/lime/system/System.hx index 7d8770b85..6ce4c7e3f 100644 --- a/lime/system/System.hx +++ b/lime/system/System.hx @@ -74,6 +74,8 @@ class System { #if tools ApplicationMain.config.background = color; ApplicationMain.config.element = element; + ApplicationMain.config.width = width; + ApplicationMain.config.height = height; ApplicationMain.create (); #end