From ab58bbd41e159cb9607348cedd17af348fdbada3 Mon Sep 17 00:00:00 2001 From: mfranz Date: Sun, 11 Jan 2009 00:49:39 +0000 Subject: [PATCH] hits are consumed by default (prevents actions in lower dialogs) --- src/GUI/dialog.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);