diff options
author | Richard Nelson <none@none> | 2010-03-04 15:27:28 -0800 |
---|---|---|
committer | Richard Nelson <none@none> | 2010-03-04 15:27:28 -0800 |
commit | 5208aa56bd28490084166d0f755ce8d2f0dcd5a2 (patch) | |
tree | d666377bb47542a012e425529bbe79d6bd04942f /indra/newview/llexpandabletextbox.cpp | |
parent | 902548c55cce856633a74fe98f515ad4b1804c05 (diff) |
fixed expandable text box not hiding when clicking off them
Diffstat (limited to 'indra/newview/llexpandabletextbox.cpp')
-rw-r--r-- | indra/newview/llexpandabletextbox.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/indra/newview/llexpandabletextbox.cpp b/indra/newview/llexpandabletextbox.cpp index 9a906d8323..362010d65a 100644 --- a/indra/newview/llexpandabletextbox.cpp +++ b/indra/newview/llexpandabletextbox.cpp @@ -412,6 +412,13 @@ void LLExpandableTextBox::onFocusLost() LLUICtrl::onFocusLost(); } +void LLExpandableTextBox::onTopLost() +{ + collapseTextBox(); + + LLUICtrl::onTopLost(); +} + void LLExpandableTextBox::setValue(const LLSD& value) { collapseTextBox(); |