From 4cee7b5711589b5bc61e121c82e52c8fbe0a6e86 Mon Sep 17 00:00:00 2001 From: Carsten Haitzler Date: Sun, 19 Oct 2008 14:15:23 +0000 Subject: [PATCH] oh yeah. handle sizing right. SVN revision: 36818 --- src/bin/e_about.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bin/e_about.c b/src/bin/e_about.c index 2e89c7a94..ab1d3d995 100644 --- a/src/bin/e_about.c +++ b/src/bin/e_about.c @@ -158,7 +158,7 @@ e_about_show(E_About *about) Evas_Coord w, h, mw, mh; edje_object_size_min_get(about->bg_object, &w, &h); - edje_object_size_min_calc(about->bg_object, &mw, &mh); + edje_object_size_min_restricted_calc(about->bg_object, &mw, &mh, w, h); if (w > mw) mw = w; if (h > mh) mh = h; evas_object_resize(about->bg_object, mw, mh); @@ -170,7 +170,7 @@ e_about_show(E_About *about) { if (w < mw) w = mw; if (h < mh) h = mh; - e_win_size_max_set(about->win, mw, mh); + e_win_size_max_set(about->win, w, h); } e_win_show(about->win); }