Re: [Pharo-users] making scroll smooth

2017-01-13 Thread Thierry Goubier
Hi Siemen, there is such a place, but it is not as easy as it seems. First, the widget has to accept per-pixel position of the top of the view, which is often something you want to avoid because it is fairly complex. Then you need to ensure that the scrolling can be done per pixel; whereas it is o

Re: [Pharo-users] making scroll smooth

2017-01-13 Thread Henrik Nergaard
pharo is welcome Emne: Re: [Pharo-users] making scroll smooth There must be a place that defines that scroll should happen by a line height, rather than continuously... Does anyone know where to look? -- Siemen

Re: [Pharo-users] making scroll smooth

2017-01-13 Thread Guillermo Polito
Check the FastTable package... I only know the entry point, others will give you better guidance though ^^. On Fri, Jan 13, 2017 at 11:41 AM, Siemen Baader wrote: > There must be a place that defines that scroll should happen by a line > height, rather than continuously... Does anyone know where

Re: [Pharo-users] making scroll smooth

2017-01-13 Thread Siemen Baader
There must be a place that defines that scroll should happen by a line height, rather than continuously... Does anyone know where to look? -- Siemen

Re: [Pharo-users] making scroll smooth

2017-01-11 Thread Siemen Baader
Thanks - I did it and it seems (also from the docs) to affect the framerate, not the discrete scroll-behaviour. Nautilus panels scroll by ca. one line height, I want them to scroll continously, by one pixel only at a time.. -- Siemen On Tue, Jan 10, 2017 at 6:16 PM, p...@highoctane.be wrote: >

Re: [Pharo-users] making scroll smooth

2017-01-10 Thread p...@highoctane.be
Try this: WorldState MinCycleLapse: 16. Should make things better. Phil On Tue, Jan 10, 2017 at 5:40 PM, Siemen Baader wrote: > Hi All, > > I'm used to and like the smooth scrolling of modern browsers and OS'es and > miss it in Pharo. It as discrete scroll deltas; when I scroll it moves the >

[Pharo-users] making scroll smooth

2017-01-10 Thread Siemen Baader
Hi All, I'm used to and like the smooth scrolling of modern browsers and OS'es and miss it in Pharo. It as discrete scroll deltas; when I scroll it moves the window content by several pixels or not at all if the movement is below a certain threshold. How can I enable smooth scroll / set that thres