GNOME Bugzilla – Bug 50233
Text widget has chunky scrolling
Last modified: 2014-07-10 03:03:14 UTC
Scrolling in the text widget is not very nice feeling; also, there are two pieces of scroll code, one while doing drag-and-drop and one while selecting. Need to clean up/unify the scroll code, and make it work nicely.
Put all GTK 1.3.x bugs on 2.0.0 milestone
No must-fix bug here. Can fix sometime.
Created attachment 31950 [details] [review] smooth auto scrolling patch The patch adds accelerated smooth auto scrolling support for text selection and drag and drop. I thought this needed to be looked at, so I went ahead and put together something usable. I'm no usability expert, though, so someone who is should review this. Someone (with more knowledge than me) should also review the technical stuff, as it's likely not without quirks... I'll be happy to improve this as needed.
*** Bug 157043 has been marked as a duplicate of this bug. ***
Wouldn't this be a duplicate of bug 103811 (or vice versa)?
Bug 103811 implements smooth scrolling for all widgets using GtkAdjustments. This patch makes the GtkTextView scroll in a custom way, without using the adjustments. I think the right way is to first implement 103811, then smooth scrolling the textview becomes as simple as gtk_adjustment_step_down (text_view->vadjustment).
I think this has been somewhat addressed now, with smooth and animated scrolling