From 56824b130b786aab49876a71c6c768a17c5a4f1c Mon Sep 17 00:00:00 2001 From: Simon Howard Date: Fri, 10 Dec 2010 20:31:46 +0000 Subject: Replace txt_widget_t#selectable with a callback function to query whether the widget is selectable. This stops the table code from selecting things that aren't really selectable - eg. empty tables, scrollpanes containing unselectable widgets, etc. Fixes a bug with the warp menu (thanks Proteh). Subversion-branch: /trunk/chocolate-doom Subversion-revision: 2207 --- textscreen/txt_inputbox.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'textscreen/txt_inputbox.c') diff --git a/textscreen/txt_inputbox.c b/textscreen/txt_inputbox.c index 3e52bae9..852346f3 100644 --- a/textscreen/txt_inputbox.c +++ b/textscreen/txt_inputbox.c @@ -232,6 +232,7 @@ static void TXT_InputBoxMousePress(TXT_UNCAST_ARG(inputbox), txt_widget_class_t txt_inputbox_class = { + TXT_AlwaysSelectable, TXT_InputBoxSizeCalc, TXT_InputBoxDrawer, TXT_InputBoxKeyPress, @@ -242,6 +243,7 @@ txt_widget_class_t txt_inputbox_class = txt_widget_class_t txt_int_inputbox_class = { + TXT_AlwaysSelectable, TXT_InputBoxSizeCalc, TXT_InputBoxDrawer, TXT_IntInputBoxKeyPress, -- cgit v1.2.3