Man, this is done by you 3 years ago. (not blaming, I was just curious)
http://trac.enlightenment.org/e/changeset/36487/trunk/TMP/st/elementary/src/lib/elm_win.c

But it was working before.
It looks like elm_win sub objects eval was affected by something else :(

Daniel Juyung Seo (SeoZ)

On Mon, Aug 1, 2011 at 9:19 PM, Enlightenment SVN
<no-re...@enlightenment.org> wrote:
> Log:
> min size of a win is NOT -1!!
>
>
>
> Author:       raster
> Date:         2011-08-01 05:19:36 -0700 (Mon, 01 Aug 2011)
> New Revision: 61948
> Trac:         http://trac.enlightenment.org/e/changeset/61948
>
> Modified:
>  trunk/elementary/src/lib/elm_win.c
>
> Modified: trunk/elementary/src/lib/elm_win.c
> ===================================================================
> --- trunk/elementary/src/lib/elm_win.c  2011-08-01 12:16:39 UTC (rev 61947)
> +++ trunk/elementary/src/lib/elm_win.c  2011-08-01 12:19:36 UTC (rev 61948)
> @@ -786,8 +786,8 @@
>         if (wy == 0.0) xy = 0;
>
>         evas_object_size_hint_min_get(child, &w, &h);
> -        if (w < 1) w = -1;
> -        if (h < 1) h = -1;
> +        if (w < 1) w = 1;
> +        if (h < 1) h = 1;
>         if (w > minw) minw = w;
>         if (h > minh) minh = h;
>
>
>
> ------------------------------------------------------------------------------
> Got Input?   Slashdot Needs You.
> Take our quick survey online.  Come on, we don't ask for help often.
> Plus, you'll get a chance to win $100 to spend on ThinkGeek.
> http://p.sf.net/sfu/slashdot-survey
> _______________________________________________
> enlightenment-svn mailing list
> enlightenment-...@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/enlightenment-svn
>

------------------------------------------------------------------------------
Got Input?   Slashdot Needs You.
Take our quick survey online.  Come on, we don't ask for help often.
Plus, you'll get a chance to win $100 to spend on ThinkGeek.
http://p.sf.net/sfu/slashdot-survey
_______________________________________________
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

Reply via email to