On Wed, 11 May 2011, Enlightenment SVN wrote:
> Log: > Edje text: fix issue with ellipsis causing text to disappear. changelog > > Thanks to Brian Wang for the report. > > Author: tasn > Date: 2011-05-11 04:05:21 -0700 (Wed, 11 May 2011) > New Revision: 59328 > Trac: http://trac.enlightenment.org/e/changeset/59328 > > Modified: > branches/edje-1.0/src/lib/edje_text.c > > Modified: branches/edje-1.0/src/lib/edje_text.c > =================================================================== > --- branches/edje-1.0/src/lib/edje_text.c 2011-05-11 10:50:51 UTC (rev > 59327) > +++ branches/edje-1.0/src/lib/edje_text.c 2011-05-11 11:05:21 UTC (rev > 59328) > @@ -176,7 +176,7 @@ > > /* Convert uc1, uc2 -> c1, c2 */ > i = 0; > - if (uc1 > 0) > + if (uc1 >= 0) > { > c1 = 0; > for ( ; i < uc1 ; i++) > @@ -184,7 +184,7 @@ > c1 = evas_string_char_next_get(text, c1, NULL); > } > } > - if (uc2 > 0) > + if (uc2 >= 0) > { > c2 = c1; > for ( ; i < uc2 ; i++) > > > ------------------------------------------------------------------------------ > Achieve unprecedented app performance and reliability > What every C/C++ and Fortran developer should know. > Learn how Intel has extended the reach of its next-generation tools > to help boost performance applications - inlcuding clusters. > http://p.sf.net/sfu/intel-dev2devmay > _______________________________________________ > enlightenment-svn mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/enlightenment-svn > > ------------------------------------------------------------------------------ Achieve unprecedented app performance and reliability What every C/C++ and Fortran developer should know. Learn how Intel has extended the reach of its next-generation tools to help boost performance applications - inlcuding clusters. http://p.sf.net/sfu/intel-dev2devmay _______________________________________________ enlightenment-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
