From 61816a5ba25ebe69c24a61006aaa30d45b9aee49 Mon Sep 17 00:00:00 2001 From: Dave Andreoli Date: Sat, 24 Jan 2015 14:30:40 +0100 Subject: [PATCH] Fix gadman config to be actually usable. The button was not expanded correctly in the box, not really the definitive fix, something is wrong in e_widget_framelist_object_append_full() --- src/modules/gadman/e_mod_config.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/gadman/e_mod_config.c b/src/modules/gadman/e_mod_config.c index 06c35fb..16c3c7d 100644 --- a/src/modules/gadman/e_mod_config.c +++ b/src/modules/gadman/e_mod_config.c @@ -189,7 +189,7 @@ _basic_create_widgets(E_Config_Dialog *cfd EINA_UNUSED, Evas *evas, E_Config_Dia ob = e_widget_button_add(evas, _("Configure Layer"), NULL, _cb_config, cfdata, NULL); e_widget_disabled_set(ob, 1); cfdata->o_config = ob; - e_widget_size_min_get(ob, &mw, &mh); + evas_object_size_hint_min_get(ob, &mw, &mh); e_widget_framelist_object_append_full(of, ob, 1, 1, /* fill */ 1, 0, /* expand */ -- 2.7.4