homeopatix / FishingHelper

FishingHelper is a small plugin to have a quick overview of quests, hobby master
1 stars 1 forks source link

Missing scrollbars #2

Open spawn900 opened 9 months ago

spawn900 commented 9 months ago

There is no scrollbar in most of the windows. Therefor the user can overlook some informations.

ScreenShot_2024-02-27_084909_0

homeopatix commented 9 months ago

Hello,

yes the scrollbar is missing, but you can use the mouse wheel to scroll down

Homeo

spawn900 commented 8 months ago

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.