[EMAIL PROTECTED] wrote: > I think I got it. We had bound the keystrokes to test for a function-key > but did not issue evt.super() for "normal" keystrokes.
evt.super() is never necessary. self.super() could be necessary if you have a superclass method handling the event as well. But usually, you just need to call evt.continue() which will negate a prior evt.stop(). -- pkm ~ http://paulmcnett.com _______________________________________________ Post Messages to: [email protected] Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-users Searchable Archives: http://leafe.com/archives/search/dabo-users This message: http://leafe.com/archives/byMID/dabo-users/[EMAIL PROTECTED]
