GeditSplitView icon indicating copy to clipboard operation
GeditSplitView copied to clipboard

Fixed problem with split view not scrolling

Open r-barnes opened this issue 12 years ago • 1 comments

As mentioned in Issue #4, the bottom window of the split view does not scroll in response to keyboard commands.

As it turns out this is because the view is added to a GtkScrolledWindow using add_with_viewport(). This is wrong. If the child element has native scrolling (which is the case here), it should be added with add().

This documentation ("http://www.pygtk.org/docs/pygtk/class-gtkscrolledwindow.html#method-gtkscrolledwindow--add-with-viewport") supports my conclusion, as does the fact that it resolves Issue #4... at least in Gedit 3.6.2.

r-barnes avatar May 24 '13 03:05 r-barnes

I can confirm that this fixes the problem in Gedit 3.4.1 as well, thanks!

bjfar avatar Aug 12 '13 08:08 bjfar