Re: [Pharo-project] need hunter to kill the double paste bug.

2009-12-25 Thread Mariano Martinez Peck
On Fri, Dec 25, 2009 at 8:20 PM, John M McIntosh < john...@smalltalkconsulting.com> wrote: > Christmas greetings everyone, as I await the cooking of the turkey and > observe the teenagers here plot the spending of > their Christmas money I see in my in-box Michael has sent me a rewrite of > the Ho

Re: [Pharo-project] need hunter to kill the double paste bug.

2009-12-25 Thread John M McIntosh
Christmas greetings everyone, as I await the cooking of the turkey and observe the teenagers here plot the spending of their Christmas money I see in my in-box Michael has sent me a rewrite of the HostMenu system. I've sent back a few changes, and maybe in the next day or so when Michael gets

Re: [Pharo-project] need hunter to kill the double paste bug.

2009-12-20 Thread Michael Rueger
Lukas Renggli wrote: > Another thing, this is not something that is only related to the > clipboard. I've seen a similar thing happen when I use a keyboard > shortcut that opens a dialog. In some cases the initial selection of a > text-field is replaced by the keyboard shortcuts character, e.g. > p

Re: [Pharo-project] need hunter to kill the double paste bug.

2009-12-19 Thread Lukas Renggli
Another thing, this is not something that is only related to the clipboard. I've seen a similar thing happen when I use a keyboard shortcut that opens a dialog. In some cases the initial selection of a text-field is replaced by the keyboard shortcuts character, e.g. pressing Ctrl+x to delete a meth

Re: [Pharo-project] need hunter to kill the double paste bug.

2009-12-19 Thread George Herolyants
2009/12/19 Mariano Martinez Peck : > On Thu, Dec 17, 2009 at 4:20 PM, Michael Rueger wrote: >> >> Do people actually experience the double paste problem on non-Mac >> platforms? > > No. Only mac. I have been using Pharo in Linux and Windows, and happpens > only on Mac I think. I've never expirien

Re: [Pharo-project] need hunter to kill the double paste bug.

2009-12-18 Thread Mariano Martinez Peck
On Thu, Dec 17, 2009 at 4:20 PM, Michael Rueger wrote: > > Do people actually experience the double paste problem on non-Mac > platforms? > > No. Only mac. I have been using Pharo in Linux and Windows, and happpens only on Mac I think. > > John M McIntosh wrote: > > > Technically the behaviour

Re: [Pharo-project] need hunter to kill the double paste bug.

2009-12-17 Thread Michael Rueger
Do people actually experience the double paste problem on non-Mac platforms? John M McIntosh wrote: > Technically the behaviour between the the versions (3.x/4.x/5.x) > should be the same, if you can show it's not, then it's a bug. > > In 5.0 we see the keydown and record data, but we don't ac

Re: [Pharo-project] need hunter to kill the double paste bug.

2009-12-16 Thread John M McIntosh
In pre V5.0 Macintosh VMs The timestamp field is the millisecond clock value for when the event record is created. It has nothing to do with when the event occurred. Each of the keydown/stroke/up make a trip to the clock so the fact it rolled over isn't surprising. On 2009-12-16, at 7:11 AM,

Re: [Pharo-project] need hunter to kill the double paste bug.

2009-12-16 Thread Mariano Martinez Peck
On Wed, Dec 16, 2009 at 4:01 PM, Michael Rueger wrote: > Mariano Martinez Peck wrote: > >> okI think now I get it now (sorry I was trying with another image >> wothout the .cs hahahah) >> > > ;-) > So this is a double paste although you are hitting cmd-v only once? > yes. > There a two com

Re: [Pharo-project] need hunter to kill the double paste bug.

2009-12-16 Thread Michael Rueger
Mariano Martinez Peck wrote: > okI think now I get it now (sorry I was trying with another image > wothout the .cs hahahah) ;-) So this is a double paste although you are hitting cmd-v only once? There a two complete event sets with key-down-stroke-up for cmd v... Very weird... OK, need to g

Re: [Pharo-project] need hunter to kill the double paste bug.

2009-12-16 Thread Michael Rueger
Mariano Martinez Peck wrote: > Is this one better? There are still no paste events in the event log. Here's what the tail of my log looks like: an OrderedCollection([keyUp ''] [keyUp ''] [keyDown ''] [keystroke ''] [keyUp ''] [keyDown ''] [keyDown ''] [keystroke ''] [keyUp ''] [keyUp ''] [ke

Re: [Pharo-project] need hunter to kill the double paste bug.

2009-12-16 Thread Mariano Martinez Peck
On Wed, Dec 16, 2009 at 3:05 PM, Michael Rueger wrote: > Mariano Martinez Peck wrote: > >> sorryhere it is >> > > Thanks! > But... > could it be you used keyboard shortcuts to open the windows and move around > the UI? That would overwrite the "interesting" key events in the log... > > U.

Re: [Pharo-project] need hunter to kill the double paste bug.

2009-12-16 Thread Michael Rueger
Mariano Martinez Peck wrote: > sorryhere it is Thanks! But... could it be you used keyboard shortcuts to open the windows and move around the UI? That would overwrite the "interesting" key events in the log... Michael ___ Pharo-project mailing l

Re: [Pharo-project] need hunter to kill the double paste bug.

2009-12-16 Thread Mariano Martinez Peck
Ok...I could reproduce it...I attach an screenshot with the inspector open in both objects. does this help? Cheers, Mariano On Wed, Dec 16, 2009 at 11:50 AM, Mariano Martinez Peck < marianop...@gmail.com> wrote: > yes, it worked :) > > Now I have to wait until the double paste appear! > > 2009

Re: [Pharo-project] need hunter to kill the double paste bug.

2009-12-16 Thread Mariano Martinez Peck
yes, it worked :) Now I have to wait until the double paste appear! 2009/12/16 Stéphane Ducasse > yes it seems that there is a problem :) > > Houston? > > it should be an handMorph > > sendKeyboardEvent: anEvent >"Send the event to the morph currently holding the focus, or if none > to

Re: [Pharo-project] need hunter to kill the double paste bug.

2009-12-16 Thread Stéphane Ducasse
yes it seems that there is a problem :) Houston? it should be an handMorph sendKeyboardEvent: anEvent "Send the event to the morph currently holding the focus, or if none to the owner of the hand." ServiceShortcuts handleKeystroke: anEvent. LastEvents size > 10

Re: [Pharo-project] need hunter to kill the double paste bug.

2009-12-16 Thread Mariano Martinez Peck
When I try to file in the .ch I get a sintax error Nothing more expected ->sendKeyboardEvent: anEvent "Send the event to the morph currently holding the focus, or if none to the owner of the hand." ServiceShortcuts handleKeystroke: anEvent. LastEvents size > 10 ifTrue: [La

[Pharo-project] need hunter to kill the double paste bug.

2009-12-16 Thread Stéphane Ducasse
> Hi all, > > attached a little patch to capture events and paste buffer. > > If you encounter a double paste please take a look at > LastClipPaste and LastEvents. > > If this doesn't provide any clue, I will work out a more aggressive tracing > approach. > > Didn't send it to the list as it p