I have a list widget on a settings page and wanted to make it narrower, but 40% of the screen width seems to be as small as it will go, at least in the simulator. Is that correct?
Tried putting a list into a window as a work around for this problem, and it works fine apart from the fact that my scrollbar doesn’t appear, even when the property scrollbar is set to “always”
Tried putting a list into a window as a work around for this problem, and it works fine apart from the fact that my scrollbar doesn’t appear, even when the property scrollbar is set to “always”
_G.GUI.NewList(
{
x = 0,
y = 20,
width = “20%”,
–Here add this minWidth
minWidth =20,
–too bad widget did not say that in the comments so i had to try it myself and it worked
Thanks for that, I’ll try it
_G.GUI.NewList(
{
x = 0,
y = 20,
width = “20%”,
–Here add this minWidth
minWidth =20,
–too bad widget did not say that in the comments so i had to try it myself and it worked
Thanks for that, I’ll try it