Pull, modify (you edit the code using GitHub's web interface), push. ___
Oskar Krawczyk http://nouincolor.com On Thu, Dec 3, 2009 at 5:27 PM, Thierry bela nanga <[email protected]> wrote: > > the current returned value is, > > return (w == 0 && h == 0) ? false : (w > 0 && h > 0) ? true : > this.isDisplayed(); > > and should be, > > > return (w == 0 || h == 0) ? false : (w > 0 && h > 0) ? true : > this.isDisplayed(); > > > -- > http://tbela99.blogspot.com/ > > fax : (+33) 08 26 51 94 51 >
