From: mfranz Date: Tue, 10 Feb 2009 09:46:30 +0000 (+0000) Subject: call puaLargeInput's checkKey() if active (fixes ctrl-c) X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=880533037a332b9ad45a2c9ab5c5e997cd467883;p=flightgear.git call puaLargeInput's checkKey() if active (fixes ctrl-c) --- diff --git a/src/GUI/dialog.cxx b/src/GUI/dialog.cxx index 50703847a..e72275f91 100644 --- a/src/GUI/dialog.cxx +++ b/src/GUI/dialog.cxx @@ -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;