Użytkownik Ed Leafe napisał:
> On Oct 16, 2010, at 5:11 PM, Jacek Kałucki wrote:
>
>    
>> Of course I can wrap my code into callAfterInterval() function,
>> but results can be unpredictable.
>> What if you change it a bit and instead of using:
>>      for binding in self._EventBindings:
>> you change it to something like:
>>      for binding in reversed(self._EventBindings) if
>> dabo.reverseEventOrder self._EventBindings:
>> ?
>>      
>
>       Have you tried that?
>
>       Make the change in your copy of the framework, and run your apps as 
> well as the included Dabo apps. If the problems you are seeing now disappear, 
> and everything else works correctly, then you can commit the change.
>    

Correct code is:

for binding in reversed(self._EventBindings)
        if dabo.reverseEventOrder else self._EventBindings:


Yes, I'm currently testing this code
and everything seems to be working fine.
But give me two days to I make sure.
And I can't make any tests for OS X.

-- 
Regards
Jacek Kałucki


_______________________________________________
Post Messages to: [email protected]
Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-dev
Searchable Archives: http://leafe.com/archives/search/dabo-dev
This message: http://leafe.com/archives/byMID/[email protected]

Reply via email to