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

Reply via email to