Something’s wacky with evt_kill_focus. It wasn’t firing at all for me.
It
disallows passing a Wx id, and supposedly is a catch-all, but it was
never
firing. Latest WxRuby. I had to do this to fix it. No idea why this
works or
what’s going on, just putting it out there:
class MyListCtrl < Wx::ListCtrl
def initialize(*args)
super(*args)
evt_kill_focus { }
end
end