0ac80ddf30
Given an imagebox i with i.resize_forbidden = false and a valid image set, the call t:fit(0, 0) would return two times "not a number". This is because the code first does some calculations to get the input image into the available space and then tried to do some calculations needed for scaling images up. The first calculation already gave us h == 0 == w, the second calculation would then calculate 0/0. This results in NaNs. This was only noticed because NaN is not a valid table index in lua. Fix this by returning 0,0 if we have an image of width or height 0 after the first calculation. Since 0x0 images are valid in cairo, this also fixes the same bug with such images. Signed-off-by: Uli Schlachter <psychon@znc.in> |
||
---|---|---|
.. | ||
background.lua.in | ||
base.lua.in | ||
imagebox.lua.in | ||
init.lua.in | ||
systray.lua.in | ||
textbox.lua.in |