You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you have two PageComponents on screen (see code below), then:
top one has velocityThreshold: 0
scroll the top one
scroll the bottom one
unexpected: the top one scrolls by one page
The culprit in this case is velocityThreshold: 0. But at a deeper level, somehow the first page components reacts to events that are never meant for it. It seems DragSessionEnd
page=newPageComponentwidth:Screen.widthheight:100velocityThreshold:0# setting this to anything else > 0 worksfor i in [0..10]
newLayerwidth:100parent:page.contentx: i * (100+8)
page2=newPageComponentwidth:Screen.widthheight:100y:200
The text was updated successfully, but these errors were encountered:
If you have two
PageComponent
s on screen (see code below), then:velocityThreshold: 0
unexpected: the top one scrolls by one page
The culprit in this case is
velocityThreshold: 0
. But at a deeper level, somehow the first page components reacts to events that are never meant for it. It seemsDragSessionEnd
Framer/framer/Components/PageComponent.coffee
Line 35 in 23da2bf
The text was updated successfully, but these errors were encountered: