Open spawn900 opened 9 months ago
Hello,
yes the scrollbar is missing, but you can use the mouse wheel to scroll down
Homeo
I found the error of the missing scrollbars: In FarmWindow.lua on line 34, windowWidth was referring to the displayWidth:
windowWidth, windowHeight = Turbine.UI.Display:GetSize();
vscrollListBox:SetPosition(windowWidth - 20, 90);
I changed it to
displayWidth, displayHeight = Turbine.UI.Display:GetSize();
and changed the width/height in the "CreateFarmWindow" function to "windowsWidth/windowHeight". All problems solved.
There is no scrollbar in most of the windows. Therefor the user can overlook some informations.