lcl: DoRemainingKeyUp must return False it LCL does not handle that key

git-svn-id: trunk@18480 -
This commit is contained in:
paul 2009-01-29 03:28:36 +00:00
parent d228a457dc
commit 0a7dc1d469

View File

@ -5295,7 +5295,7 @@ var
ShiftState: TShiftState;
begin
//debugln('TWinControl.DoRemainingKeyUp ',DbgSName(Self));
Result:=true;
Result := True;
ShiftState := KeyDataToShiftState(Message.KeyData);
@ -5309,6 +5309,7 @@ begin
if Message.CharCode=VK_UNKNOWN then exit;
// Note: Message.CharCode can now be different or even 0
end;
Result := False;
end;
{------------------------------------------------------------------------------