From 880533037a332b9ad45a2c9ab5c5e997cd467883 Mon Sep 17 00:00:00 2001 From: mfranz Date: Tue, 10 Feb 2009 09:46:30 +0000 Subject: [PATCH] call puaLargeInput's checkKey() if active (fixes ctrl-c) --- src/GUI/dialog.cxx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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; -- 2.39.5