From ffdc31a8c213882b1b5610ee90571e33b4f1a03e Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Wed, 16 Mar 2016 12:21:26 -0400 Subject: [PATCH] attempt to use left-aligned label text in wizard --- src/modules/wizard/page_065.c | 1 + src/modules/wizard/page_170.c | 1 + src/modules/wizard/page_180.c | 1 + 3 files changed, 3 insertions(+) diff --git a/src/modules/wizard/page_065.c b/src/modules/wizard/page_065.c index 7c3456edd..88bf7ad69 100644 --- a/src/modules/wizard/page_065.c +++ b/src/modules/wizard/page_065.c @@ -104,6 +104,7 @@ wizard_page_show(E_Wizard_Page *pg EINA_UNUSED) elm_object_content_set(of, o); ob = elm_label_add(o); + elm_object_style_set(ob, "default/left"); snprintf(buf, sizeof(buf), _("Enlightenment sets default mouse bindings for objects.
" "These bindings provide three operations on click:
" "* Move (left button)
" diff --git a/src/modules/wizard/page_170.c b/src/modules/wizard/page_170.c index e0663fe97..5f23a1b67 100644 --- a/src/modules/wizard/page_170.c +++ b/src/modules/wizard/page_170.c @@ -29,6 +29,7 @@ wizard_page_show(E_Wizard_Page *pg EINA_UNUSED) elm_object_content_set(of, o); ob = elm_label_add(of); + elm_object_style_set(ob, "default/left"); E_ALIGN(ob, 0, 0.5); evas_object_show(ob); elm_box_pack_end(o, ob); diff --git a/src/modules/wizard/page_180.c b/src/modules/wizard/page_180.c index 92158b6bc..740db062b 100644 --- a/src/modules/wizard/page_180.c +++ b/src/modules/wizard/page_180.c @@ -29,6 +29,7 @@ wizard_page_show(E_Wizard_Page *pg EINA_UNUSED) elm_object_content_set(of, o); ob = elm_label_add(o); + elm_object_style_set(ob, "default/left"); E_ALIGN(ob, 0, 0.5); evas_object_show(ob); elm_box_pack_end(o, ob);