Scrolling frame doesn't let you scroll further at a certain point

As the title says and the gyazo gif I’ll send, the scrolling frame for some reason doesn’t let you scroll all the way even though there are more instances in the scrolling frame to scroll through

https://gyazo.com/432ef2fc2eef419d85997e42814c5b00
https://gyazo.com/074d2731c7fca24f11c240c5e74ac40f

(Mobile only, computer doesnt have this issue)

1 Like

Either AutomaticSize isn’t set to Y, or you’re currently experiencing the UIPadding bug. (AutomaticSize doesn’t take in account for the space used by UIPadding)

Automatic Size? I have automatic canvas size on


That’s what happens when I set actual automatic size to Y :sob:

I meant AutomaticCanvasSize, my bad.
What about the padding? I heard people (hell, even experienced it) had problems using them with ScrollingFrames due to this specific issue.

It’s at 5 pixels the padding
image

That’s odd, try padding out the elements instead?
More specifically, making the frame completely transparent, then adding an UIPadding and the actual design afterwards.

This is expected, this occurs due to UIListLayout which doesn’t account for top and bottom padding. Only one fix is to parent the scrolling frame to another frame with your specified padding values.

I dont understand how do I fix it with the frame the scrolling frame is currently in?

(Btw setting padding to 0 doesnt fix it)

Ah, apologies I read your post wrong the first time.

The issue is probably just because you’re using the offset unit of the padding property. I suggest trying the scale unit of the padding property.

I made it 0 and it didnt fix the problem

Interesting, can you send a picture of the properties of the scrolling frame?

https://gyazo.com/53e108b8bd518bf7c9dda2f047b00a40

Hmmm, try setting the canvas size to {0,0},{0,0}.

Ive tried that and also with script, doesn’t fix the issue

Ah.

Well, guess there isn’t much I can do as I don’t have access to my computer. Hopefully if this is a bug, it gets fixed properly.

Till then, can you show me the property of the buttons?

https://gyazo.com/f2e539128bd8aa43f50ba1dc498b53c2

What’s the context? Are there any repros? The content of this bug report is too vague. You need to make sure your bug report contains all the relevant info, or it will be ignored. There are many ways this can happen.

List the ways it can happen then
Context is scrolling frame that had text buttons parented to it from a list of spells and you can’t scroll past a certain point for some reason, scrolling frame has automatic canvas Y on and there are no apparent reasons for this to behave that way, padding was tested both 0 and 5 on pixels padding, setting the canvas size was also done, nothing seems to fix this

Alright so it’s not that as well… Interesting.

Also, does this happen when ElasticBehaviour is set to None?