Results 7 comments of Sofox

Duplicate of https://github.com/godotengine/godot/issues/44629 I've made pull request that fixes this issue and has been approved for 4.3 : https://github.com/godotengine/godot/pull/85181

> Tested locally, it has some issues with flickering when the limit is reached. Here, I `print(delta)` in `_process(delta)` with the limit configured to 1000: Yeah, I got the same...

I amended PR to make use of @bruvzg's newly added feature that lets you use the `remove_paragraph()` without invalidating the cache. Should address the flickering.

Great job. I tried to tackle this a bit ago but couldn't figure out how to fix this while keeping the live preview working. Great to see this resolved.

It occurred to me that fast fix would just be to have "scrolling" fired whenever "_value_changed" is called, but that might be too broad. Could I have some more direction...

Trying to nail down what desired behaviour is. Clicking and dragging the scroll bar handle seems straighforward: a `scroll_started` when the mouse button goes down on the handle (or first...

So this will mean the signals will be triggered regardless of how the scroll is initiated, including programmatically. It would also replace the current system for inertia scrolling. Is this...