diff options
author | Cho <cho@lindenlab.com> | 2013-01-17 18:16:10 +0000 |
---|---|---|
committer | Cho <cho@lindenlab.com> | 2013-01-17 18:16:10 +0000 |
commit | e05449e7fe5e39f61c45504e27e109ffb4b68195 (patch) | |
tree | 5ae36c93454557ff62caf739bd12aa194585e6ba /indra/llui | |
parent | 1a3de3b1fc79f7a237922fc813d97d3ba8deb4f3 (diff) | |
parent | 8c3d3d4b07f12e3462af7745016536389ab7cf73 (diff) |
merging latest changes
Diffstat (limited to 'indra/llui')
-rw-r--r-- | indra/llui/llfloater.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/indra/llui/llfloater.cpp b/indra/llui/llfloater.cpp index 8f9be5285d..d2aae11191 100644 --- a/indra/llui/llfloater.cpp +++ b/indra/llui/llfloater.cpp @@ -655,7 +655,7 @@ void LLFloater::openFloater(const LLSD& key) { llinfos << "Opening floater " << getName() << llendl; mKey = key; // in case we need to open ourselves again - + if (getSoundFlags() != SILENT // don't play open sound for hosted (tabbed) windows && !getHost() @@ -2394,6 +2394,11 @@ void LLFloaterView::bringToFront(LLFloater* child, BOOL give_focus) { if (mFrontChild == child) { + + if (give_focus && !gFocusMgr.childHasKeyboardFocus(child)) + { + child->setFocus(TRUE); + } return; } |