* Filter out B_INSERT and B_FUNCTION_KEY as they would end up in type ahead "default" case. Fixes #5609. Looking at all the not already caught keycodes, this should cover every cases.

+alphabranch


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@36593 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Alexandre Deckner 2010-05-03 00:13:59 +00:00
parent 08b3ae9bb2
commit ecdb5ec668
1 changed files with 4 additions and 0 deletions

View File

@ -6184,6 +6184,10 @@ BPoseView::KeyDown(const char *bytes, int32 count)
SelectPose(pose, index);
break;
}
case B_FUNCTION_KEY:
case B_INSERT:
break;
default:
{