1
0
Fork 0

call puaLargeInput's checkKey() if active (fixes ctrl-c)

This commit is contained in:
mfranz 2009-02-10 09:46:30 +00:00 committed by Tim Moore
parent a9475796eb
commit 880533037a

View file

@ -181,7 +181,8 @@ puObject *fgPopup::getActiveInputField(puObject *object)
if ((ret = getActiveInputField(obj)))
return ret;
if (object->getType() & PUCLASS_INPUT && ((puInput *)object)->isAcceptingInput())
if (object->getType() & (PUCLASS_INPUT|PUCLASS_LARGEINPUT)
&& ((puInput *)object)->isAcceptingInput())
return object;
return 0;