Re: [Pharo-dev] No more MouseWheelEvents?

2014-01-29 Thread Hilaire Fernandes
I am not exactly sure, but I think mouseWheelEvents were always simulated with Ctrl events. Hilaire Le 29/01/2014 00:06, Nicolai Hess a écrit : How it comes we lost the MouseWheelEvents. The SimpleHierarchicalListMorph in FileList does not scroll on MouseWheelEvents. Or at least it worked

Re: [Pharo-dev] No more MouseWheelEvents?

2014-01-29 Thread Sebastian Sastre
There is something about the wheel because often, at least in Nautilus, you get crazy scrolls you dind’t asked for Specially if using trackpad, two finger, scroll On Jan 29, 2014, at 6:09 AM, Hilaire Fernandes hilaire.fernan...@gmail.com wrote: I am not exactly sure, but I think

Re: [Pharo-dev] No more MouseWheelEvents?

2014-01-29 Thread kilon alios
yes Nautilus also acts crazy with magic mouse gestures. Also there is weird blue rectangle that surrounds one of the packages that refuses to go away. So I have stopped using gestures at all with Nautilus and instead do manual scrolls dragging the scroll bar. On Wed, Jan 29, 2014 at 12:34 PM,

Re: [Pharo-dev] No more MouseWheelEvents?

2014-01-29 Thread Nicolai Hess
2014-01-29 kilon alios kilon.al...@gmail.com yes Nautilus also acts crazy with magic mouse gestures. Also there is weird blue rectangle that surrounds one of the packages that refuses to go away. So I have stopped using gestures at all with Nautilus and instead do manual scrolls dragging the

Re: [Pharo-dev] No more MouseWheelEvents?

2014-01-29 Thread Sebastian Sastre
On Jan 29, 2014, at 10:08 AM, kilon alios kilon.al...@gmail.com wrote: So I have stopped using gestures at all with Nautilus and instead do manual scrolls dragging the scroll bar. I understand this is the symptom of an early release of course

Re: [Pharo-dev] No more MouseWheelEvents?

2014-01-29 Thread Sean P. DeNigris
Nicolai Hess wrote The blue rectangle looks like a drop indicator. you can drag another window over nautilus' package tree and you'll the this rectangle moving. Yes, and there is a bug. If you accidentally drop a non-package-related Morph on a Nautilus tree package pane, you will get a DNU

Re: [Pharo-dev] No more MouseWheelEvents?

2014-01-29 Thread Nicolai Hess
2014-01-29 Sean P. DeNigris s...@clipperadams.com Nicolai Hess wrote The blue rectangle looks like a drop indicator. you can drag another window over nautilus' package tree and you'll the this rectangle moving. Yes, and there is a bug. If you accidentally drop a non-package-related

Re: [Pharo-dev] No more MouseWheelEvents?

2014-01-29 Thread Pharo4Stef
Simple the VM does not give us the correct events so there are simulated. This is why what igor and ronie did on getting event from the OS via NB is important and a nice experience. It shows that we can move most of the low level stuff to the image and get a lighter VM. Now we need help because

[Pharo-dev] No more MouseWheelEvents?

2014-01-28 Thread Nicolai Hess
How it comes we lost the MouseWheelEvents. The SimpleHierarchicalListMorph in FileList does not scroll on MouseWheelEvents. Or at least it worked that way in Pharo2. But now the MouseWheel creates a keyboardevent Ctrl-. (Other ListMorphs can handle this, but the ListMorph in FileList can not.)