]> git.mxchange.org Git - flightgear.git/commitdiff
call puaLargeInput's checkKey() if active (fixes ctrl-c)
authormfranz <mfranz>
Tue, 10 Feb 2009 09:46:30 +0000 (09:46 +0000)
committerTim Moore <timoore@redhat.com>
Fri, 13 Feb 2009 09:18:17 +0000 (10:18 +0100)
src/GUI/dialog.cxx

index 50703847ac00ca279e5f045f235b45e1577d9ffa..e72275f91f15fed091f6f053df49793599628cd6 100644 (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;