From: mfranz Date: Sun, 11 Jan 2009 00:49:39 +0000 (+0000) Subject: hits are consumed by default (prevents actions in lower dialogs) X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=ab58bbd41e159cb9607348cedd17af348fdbada3;p=flightgear.git hits are consumed by default (prevents actions in lower dialogs) --- diff --git a/src/GUI/dialog.cxx b/src/GUI/dialog.cxx index 0c45133b2..0cf54472b 100644 --- a/src/GUI/dialog.cxx +++ b/src/GUI/dialog.cxx @@ -192,7 +192,7 @@ puObject *fgPopup::getActiveInputField(puObject *object) */ int fgPopup::checkHit(int button, int updown, int x, int y) { - int result = 0; + int result = 1; if (updown != PU_DRAG && !_dragging) result = puPopup::checkHit(button, updown, x, y);