From a2c478d574bc659ea541c8a12412c15d5f668d46 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Alexis=20Laferri=C3=A8re?= Date: Sun, 26 Jun 2016 11:28:51 -0400 Subject: [PATCH] app.nit: use a ListLayout in http_request example, it looks better on mobile MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Alexis Laferrière --- lib/app/examples/http_request_example.nit | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/app/examples/http_request_example.nit b/lib/app/examples/http_request_example.nit index a280da2..daa5314 100644 --- a/lib/app/examples/http_request_example.nit +++ b/lib/app/examples/http_request_example.nit @@ -61,7 +61,7 @@ class HttpRequestClientWindow super Window # Root layout - var layout = new VerticalLayout(parent=self) + var layout = new ListLayout(parent=self) # Button to send request var button_request = new Button(parent=layout, text="Press to send HTTP request") -- 1.7.9.5