<div id="__MailbirdStyleContent" style="font-size: 12pt;font-family: Calibri;color: #000000">
                                        
                                        
                                            
                                        
                                        
                                        Hi Stef,<div><br></div><div>I could not reproduce the expected behavior in Squeak 3.81 nor Squeak 4.2. You can resize the MagnifierMorph via its Halo.</div><div><br></div><div>What works is that you can press the yellow button (i.e. the right one on a three-button mouse) and then drag to resize. The code is in MagnifierMorph >> #mouseDown:  since 1999.</div><div><br></div><div>If you are referring to CTRL+RED/Drag, this has always been CTRL+YELLOW/Drag due to the VM conversion. Although, the CTRL flag is not checked in MagnifierMorph.</div><div><br></div><div>Best,</div><div>Marcel</div><div class="mb_sig"></div>
                                        
                                        <blockquote class="history_container" type="cite" style="border-left-style: solid;border-width: 1px;margin-top: 20px;margin-left: 0px;padding-left: 10px;min-width: 500px">
                        <p style="color: #AAAAAA; margin-top: 10px;">Am 11.05.2018 19:32:20 schrieb Stéphane Rollandin <hepta@zogotounga.net>:</p>Still in the latest downloadable 6.0 alpha:<br><br>The MagnifierMorph is supposed to grow in size and zooming factor when <br>one does a mouse drag with control key pressed. This does not work anymore.<br><br>More generally, it is not possible to define a ctrl+drag behavior (this <br>have been true for a while). I did fix this for muO though.<br><br>In 6.0, here is how I did it:<br><br>I added a line in the following method:<br><br>-----------------------<br><br>PasteUpMorph>>tryInvokeMetaMenu: anEvent<br><br>        | innerMost target |<br>  Preferences cmdGesturesEnabled ifFalse: [^ self].<br>     Preferences eToyFriendly ifTrue: [^ self].<br>    <br>      innerMost := (self morphsAt: anEvent position unlocked: true) first.<br><br>        innerMost honorsCtrlMetaMenu ifFalse: [^ self].  "<===><!--===--><br>    <br>      "Traverse the owner chain if some morph does not want to show its meta <br>menu."<br>     target := innerMost.<br>  [target isNil or: [target wantsMetaMenu]] whileFalse: [target := target <br>owner].<br>     target ifNil: [^ self].<br>       <br>      target invokeMetaMenu: anEvent.<br>       anEvent ignore.<br><br><br>------------------------<br><br>... with Morph>>#honorsCtrlMetaMenu returning true, overriden by false <br>for any morph wanting to have ctrl+drag work (for example, MagnifierMorph)<br><br><br>Stef<br><br>
                        </blockquote></div>