diff options
author | andreykproductengine <akleshchev@productengine.com> | 2017-01-13 17:20:08 +0200 |
---|---|---|
committer | andreykproductengine <akleshchev@productengine.com> | 2017-01-13 17:20:08 +0200 |
commit | 46e1bb558e9071e48835dc9cc8d28bb1e2d89884 (patch) | |
tree | 1b27090552c6d08f1d8f892d0693b448b5a77d4c /indra/llui/llradiogroup.h | |
parent | 187caf851561aa874d598763d0a7a6a8862a79de (diff) |
MAINT-1747 Fixed after switching Preferences tabs, radio buttons don't get focus on click
Diffstat (limited to 'indra/llui/llradiogroup.h')
-rw-r--r-- | indra/llui/llradiogroup.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/llui/llradiogroup.h b/indra/llui/llradiogroup.h index 8bd5698538..dcb2f43bfe 100644 --- a/indra/llui/llradiogroup.h +++ b/indra/llui/llradiogroup.h @@ -66,8 +66,6 @@ public: virtual BOOL postBuild(); - virtual BOOL handleMouseDown(S32 x, S32 y, MASK mask); - virtual BOOL handleKeyHere(KEY key, MASK mask); void setIndexEnabled(S32 index, BOOL enabled); @@ -75,6 +73,8 @@ public: S32 getSelectedIndex() const { return mSelectedIndex; } // set the index value programatically BOOL setSelectedIndex(S32 index, BOOL from_event = FALSE); + // foxus child by index if it can get focus + void focusSelectedRadioBtn(); // Accept and retrieve strings of the radio group control names virtual void setValue(const LLSD& value ); |