in reply to wxperl's TextCtrl in HtmlWindow won't do Copy or Cut
you can see that the problem is upstream (Skip signals to call the upstream event handler, which is the default handler, but there is a disconnect and it doesn't get called)Wx::Event::EVT_CHAR( $entry, sub{warn"@_"; $_[1]->Skip; });
You could work around the problem by handling the event yourself, but thats just busy work.
The real solution is to submit a bug report for both wxperl/wxwidgets.
|
|---|