diff options
author | Mnikolenko Productengine <mnikolenko@productengine.com> | 2016-11-07 12:33:14 +0200 |
---|---|---|
committer | Mnikolenko Productengine <mnikolenko@productengine.com> | 2016-11-07 12:33:14 +0200 |
commit | 6083fd1cbef478c15c49055d27270d0a6f2ddfa2 (patch) | |
tree | 6c3b4fc11fbdf265477f123191e0789cb4138bab /indra/llui | |
parent | 28c9002e980cf2ac6a7b7c79f8e16a64994c21c4 (diff) |
STORM-2140 LLLineEditor enabled-state cannot properly set via XUI
Diffstat (limited to 'indra/llui')
-rw-r--r-- | indra/llui/lllineeditor.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/indra/llui/lllineeditor.cpp b/indra/llui/lllineeditor.cpp index c89e1dac1d..118339577a 100644 --- a/indra/llui/lllineeditor.cpp +++ b/indra/llui/lllineeditor.cpp @@ -335,6 +335,7 @@ void LLLineEditor::reshape(S32 width, S32 height, BOOL called_from_parent) void LLLineEditor::setEnabled(BOOL enabled) { + LLUICtrl::setEnabled(enabled); mReadOnly = !enabled; setTabStop(!mReadOnly); updateAllowingLanguageInput(); |