Author: aldeck Date: 2010-05-03 02:13:59 +0200 (Mon, 03 May 2010) New Revision: 36593 Changeset: http://dev.haiku-os.org/changeset/36593/haiku Ticket: http://dev.haiku-os.org/ticket/5609 Modified: haiku/trunk/src/kits/tracker/PoseView.cpp Log: * 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 Modified: haiku/trunk/src/kits/tracker/PoseView.cpp =================================================================== --- haiku/trunk/src/kits/tracker/PoseView.cpp 2010-05-02 23:32:54 UTC (rev 36592) +++ haiku/trunk/src/kits/tracker/PoseView.cpp 2010-05-03 00:13:59 UTC (rev 36593) @@ -6184,6 +6184,10 @@ SelectPose(pose, index); break; } + + case B_FUNCTION_KEY: + case B_INSERT: + break; default: {