From e8a769c3823eef72a9e064d3bf992152ed261ad2 Mon Sep 17 00:00:00 2001 From: Joel Bodenmann Date: Fri, 6 Nov 2015 22:47:42 +0100 Subject: Adding justification parameter to gwinLabelCreate() --- demos/modules/gwin/label/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'demos/modules/gwin/label') diff --git a/demos/modules/gwin/label/main.c b/demos/modules/gwin/label/main.c index 425436ea..8ddce320 100644 --- a/demos/modules/gwin/label/main.c +++ b/demos/modules/gwin/label/main.c @@ -42,13 +42,13 @@ static void createWidgets(void) { // Create the IP label wi.g.width = 200; wi.g.height = 20; wi.g.x = 10, wi.g.y = 80; wi.text = "192.168.1.42"; - ghLabel1 = gwinLabelCreate(0, &wi); + ghLabel1 = gwinLabelCreate(0, &wi, justifyLeft); gwinLabelSetAttribute(ghLabel1, 100, "Current IP:"); // Create the DHCP label wi.g.width = 200; wi.g.height = 20; wi.g.x = 10, wi.g.y = 100; wi.text = "Off"; - ghLabel2 = gwinLabelCreate(0, &wi); + ghLabel2 = gwinLabelCreate(0, &wi, justifyLeft); gwinLabelSetAttribute(ghLabel2, 100, "DHCP:"); } -- cgit v1.2.3