[Github-comments] Re: [geany/geany] How reduce scrolling speed in Geany ? (#2768)

2022-11-30 Thread elextr via Github-comments
@clark713 The patched code uses the `linesPerScroll` value (or 4 if thats 0), and `linesPerScroll` is set from the windows system parameter [here](https://github.com/geany/geany/blob/5d4e7cfd5b12647b4cab9bda7278abd7f63e9c2f/scintilla/gtk/ScintillaGTK.cxx#L262) so maybe look at what that

[Github-comments] Re: [geany/geany] How reduce scrolling speed in Geany ? (#2768)

2022-11-30 Thread atRory via Github-comments
@eht16 Many thanks for this and for your continued efforts. The scrolling is less warp speed now. I would say this is an improvement vs before. However it seems to be scrolling by 13 lines at a time. If I start at line 1 the first scroll down goes to line 13, then 26, 39, etc which is

[Github-comments] Re: [geany/geany] How reduce scrolling speed in Geany ? (#2768)

2022-11-30 Thread Enrico Tröger via Github-comments
> > I can scroll neither with mouse wheel nor with trackpoint (didn't try > > touchpad). > > Ahh, ok, needs to set `cLineScroll` to something, maybe remove the #if too, > so the apple code is used for all platforms. Done: only the macOS code path is active. @Gershy @clark713 @kcvinker here is