From 9d8ff9e4cfe00b86f4555b8a5c50b06ae701a1dc Mon Sep 17 00:00:00 2001 From: Eric Schuele Date: Mon, 27 Aug 2007 03:05:10 +0000 Subject: [PATCH] Need a few more pixels in height to accomodate 4 full lines of text without a scrollbar. SVN revision: 31545 --- src/bin/e_int_config_modules.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/bin/e_int_config_modules.c b/src/bin/e_int_config_modules.c index 0c17a4bd5..3f196fd5c 100644 --- a/src/bin/e_int_config_modules.c +++ b/src/bin/e_int_config_modules.c @@ -152,7 +152,8 @@ _basic_create(E_Config_Dialog *cfd, Evas *evas, E_Config_Dialog_Data *cfdata) _fill_avail_list(cfdata); e_widget_frametable_object_append(of, ow, 0, 0, 1, 1, 1, 1, 1, 1); ow = e_widget_textblock_add(evas); - e_widget_min_size_set(ow, 200, 65); + e_widget_min_size_set(ow, 200, 70); + //e_widget_can_focus_set(ow, 0); cfdata->o_desc = ow; e_widget_textblock_markup_set(ow, "Description: Unavailable."); e_widget_frametable_object_append(of, ow, 0, 1, 1, 1, 1, 1, 1, 0);