From 432c4588c1dd178b346e35da22ef13c45cb30a7a Mon Sep 17 00:00:00 2001 From: Christopher Michael Date: Tue, 31 Aug 2010 23:33:27 +0000 Subject: [PATCH] Set minimum size hint on the base object to hopefully help with comp module cutting the size of the notification. SVN revision: 51792 --- src/modules/illume-indicator/e_mod_notify.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/modules/illume-indicator/e_mod_notify.c b/src/modules/illume-indicator/e_mod_notify.c index 3a9fa6cac..d68d0b4a4 100644 --- a/src/modules/illume-indicator/e_mod_notify.c +++ b/src/modules/illume-indicator/e_mod_notify.c @@ -191,6 +191,7 @@ _e_mod_notify_refresh(Ind_Notify_Win *nwin) edje_object_calc_force(nwin->o_base); edje_object_size_min_calc(nwin->o_base, &mw, &mh); + evas_object_size_hint_min_set(nwin->o_base, mw, mh); e_win_size_min_set(nwin->win, nwin->zone->w, mh); }