diff options
author | Dessie Linden <dessie@lindenlab.com> | 2010-12-07 12:51:09 -0800 |
---|---|---|
committer | Dessie Linden <dessie@lindenlab.com> | 2010-12-07 12:51:09 -0800 |
commit | 39e4303653a2eb4e6582fdea9646db8b29f96805 (patch) | |
tree | f753cac9570470aa03596459450ca5160740656d /indra/newview/llpanellandmarkinfo.cpp | |
parent | d607b9c01ac158000de14cb6f0624b8f29673662 (diff) | |
parent | f59033bfd8f78d51b10bb1d424994f786276ff95 (diff) |
Merged latest fixes
Diffstat (limited to 'indra/newview/llpanellandmarkinfo.cpp')
-rw-r--r-- | indra/newview/llpanellandmarkinfo.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/indra/newview/llpanellandmarkinfo.cpp b/indra/newview/llpanellandmarkinfo.cpp index 87acd83b23..c57746ec00 100644 --- a/indra/newview/llpanellandmarkinfo.cpp +++ b/indra/newview/llpanellandmarkinfo.cpp @@ -180,6 +180,9 @@ void LLPanelLandmarkInfo::setInfoType(EInfoType type) populateFoldersList(); + // Prevent the floater from losing focus (if the sidepanel is undocked). + setFocus(TRUE); + LLPanelPlaceInfo::setInfoType(type); } @@ -330,6 +333,9 @@ void LLPanelLandmarkInfo::toggleLandmarkEditMode(BOOL enabled) // when it was enabled/disabled we set the text once again. mNotesEditor->setText(mNotesEditor->getText()); } + + // Prevent the floater from losing focus (if the sidepanel is undocked). + setFocus(TRUE); } const std::string& LLPanelLandmarkInfo::getLandmarkTitle() const |