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
We support one-directional scrolling in JCEF. When you scroll markdown sources so that the topmost visible line contains, say, the 3rd list item, the preview should be scrolled accordingly so that the same item is shown at the top of the preview frame.
We don't support it backwards (scroll the editor according to preview position), though, so that's out of scope for the time being.
The text was updated successfully, but these errors were encountered:
…#690)
Only ScrollState is supported because of
its natural ability to scroll the view
to an arbitrary coordinate,
LazyListState doesn't allow this, and it
only gives an opportunity to scroll to
an item in a LazyColumn list and then
to a position within the item.
So, it requires a different approach
(which can hopefully be adjusted to the
proposed ScrollingSynchronizer API).
Note that the change only enables auto-scrolling
in a preview to match the position in the source,
it doesn't work the other way around.
We support one-directional scrolling in JCEF. When you scroll markdown sources so that the topmost visible line contains, say, the 3rd list item, the preview should be scrolled accordingly so that the same item is shown at the top of the preview frame.
We don't support it backwards (scroll the editor according to preview position), though, so that's out of scope for the time being.
The text was updated successfully, but these errors were encountered: