diff options
author | Eugene Mutavchi <emutavchi@productengine.com> | 2010-02-11 19:56:56 +0200 |
---|---|---|
committer | Eugene Mutavchi <emutavchi@productengine.com> | 2010-02-11 19:56:56 +0200 |
commit | 7ac90e2a08b12a28dcd4eda5767902f0e5556818 (patch) | |
tree | abda89a6a0507f0a04b4f0d2623b4738eb384f05 /indra/llui/llsearcheditor.cpp | |
parent | 740f1cd2c7229520f7765a7a7d37ea0baf563a81 (diff) |
Fixed low bug EXT-5329 (Delete option is enabled in context menu for empty edit field in IM floater)
--HG--
branch : product-engine
Diffstat (limited to 'indra/llui/llsearcheditor.cpp')
-rw-r--r-- | indra/llui/llsearcheditor.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/indra/llui/llsearcheditor.cpp b/indra/llui/llsearcheditor.cpp index 6fa99df82e..838dbbd135 100644 --- a/indra/llui/llsearcheditor.cpp +++ b/indra/llui/llsearcheditor.cpp @@ -60,6 +60,7 @@ LLSearchEditor::LLSearchEditor(const LLSearchEditor::Params& p) line_editor_params.keystroke_callback(boost::bind(&LLSearchEditor::handleKeystroke, this)); mSearchEditor = LLUICtrlFactory::create<LLLineEditor>(line_editor_params); + mSearchEditor->setPassDelete(TRUE); addChild(mSearchEditor); if (p.search_button_visible) |