Stephane, isn't it related to the issue 420 for which I proposed a fix ? I've found a problem with my fix and the attached .cs is supposed to fix the fix. The problem is that when you grab a window from outside the titlebar (try from the annotation pane as an example), then its position is badly set. Could you try to load the .cs and tell me. Alain
Hi all I remember that I integrated a change that was supposing to fix drag and drop or shadow. I cannot look for it since I'm in the train. Now there is a problem. to see it: move slowly your mouse to a window (from outside the window). When you get an arrow press and the window will be selected but place quite far from where you click. Stef _______________________________________________ Pharo-project mailing list [email protected] http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
'From PharoCore1.1ALPHA of ''19 October 2009'' [Latest update: #11076] on 7 December 2009 at 5:53:10 pm'! !SystemWindow methodsFor: 'dropping/grabbing' stamp: 'AlainPlantec 12/7/2009 17:52'! aboutToBeGrabbedBy: aHand super aboutToBeGrabbedBy: aHand. self valueOfProperty: #clickPoint ifPresentDo: [:firstClick | self position: aHand position + (self position - firstClick). self removeProperty: #clickPoint] ! !
_______________________________________________ Pharo-project mailing list [email protected] http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
