call puaLargeInput's checkKey() if active (fixes ctrl-c)
This commit is contained in:
parent
a9475796eb
commit
880533037a
1 changed files with 2 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue