<div dir="ltr"><div>The scrolling bug is caused by this change:</div><div><br></div><div><a href="http://source.squeak.org/trunk/Morphic-cmm.984.mcz" target="_blank" style="font-size:16px">http://source.squeak.org/trunk/Morphic-cmm.984.mcz</a><br></div><div><br></div><div>Morph&gt;&gt;handlesMouseMove: anEvent </div><div><span style="white-space:pre-wrap">        </span>&quot;Do I want to receive mouseMove: when the hand passes over the receiver?  Rules say that by default a morph gets #mouseMove iff</div><div><span style="white-space:pre-wrap">                </span>* the hand is not dragging anything,</div><div><span style="white-space:pre-wrap">                        </span>+ and some button is down,</div><div><span style="white-space:pre-wrap">                        </span>+ and the receiver is the current mouse focus.&quot;</div><div><span style="white-space:pre-wrap">---&gt;   </span>self eventHandler ifNotNil: [^ self eventHandler handlesMouseMove: anEvent]. &lt;-------</div><div><span style="white-space:pre-wrap">        </span>anEvent hand hasSubmorphs ifTrue: [ ^ false ].</div><div><span style="white-space:pre-wrap">        </span>(anEvent anyButtonPressed and: [ anEvent hand mouseFocus == self ]) ifFalse: [ ^ false ].</div><div><span style="white-space:pre-wrap">        </span>^ true</div><div><br></div><div>There seem to be some unintended behavior because of this change. </div><div><br></div><div>Karl</div></div><div class="gmail_extra"><br><div class="gmail_quote">On Mon, Jun 1, 2015 at 10:11 PM, karl ramberg <span dir="ltr">&lt;<a href="mailto:karlramberg@gmail.com" target="_blank">karlramberg@gmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">In latest image the mouse seem to scroll sliders just by mouse over the scroll bar.<div>It&#39;s a very unusual behavior, and I think I would like to opt out of it.</div><div><br></div><div>Is there a preference or is this a bug ?</div><span class="HOEnZb"><font color="#888888"><div><br></div><div>Karl</div></font></span></div>
</blockquote></div><br></div>