rev. 6369 worked fine. 6378 - don't workI don't think so (but not absolutely sure).
DoxyBlocks was added. May be intersect with this keyshorts? (Ctrl-Alt-...)
void EditorTweaks::OnKeyPress(wxKeyEvent& event)
{
if(event.GetKeyCode()==WXK_INSERT)
event.Skip(false);
else
event.Skip(true);
}
Codevoid EditorTweaks::OnKeyPress(wxKeyEvent& event)
{
if(event.GetKeyCode()==WXK_INSERT)
event.Skip(false);
else
event.Skip(true);
}
Yes, EditorTweaks is the guilty one. will look into this with the original author.
Codevoid EditorTweaks::OnKeyPress(wxKeyEvent& event)
{
if(event.GetKeyCode()==WXK_INSERT)
event.Skip(false);
else
event.Skip(true);
}
Yes, EditorTweaks is the guilty one. will look into this with the original author.