summaryrefslogtreecommitdiff
path: root/indra/newview/llpanelplaceinfo.cpp
diff options
context:
space:
mode:
authorSergei Litovchuk <slitovchuk@productengine.com>2010-02-25 18:47:28 +0200
committerSergei Litovchuk <slitovchuk@productengine.com>2010-02-25 18:47:28 +0200
commit087ea1cef62d383821e8e340551e757cb604b553 (patch)
treeb58945ffe384aad817e54a2db3c8ebc0b4e659bf /indra/newview/llpanelplaceinfo.cpp
parent4d978eaf0a5f09e4758956cf41f4dcf2bafb9b42 (diff)
Fixed normal bug (EXT-5748) Useless area on Place Profile panel.
- Reduced unused size in Place Profile and Landmark Info panels. --HG-- branch : product-engine
Diffstat (limited to 'indra/newview/llpanelplaceinfo.cpp')
-rw-r--r--indra/newview/llpanelplaceinfo.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llpanelplaceinfo.cpp b/indra/newview/llpanelplaceinfo.cpp
index 9ebc8ca2b9..f6133d4446 100644
--- a/indra/newview/llpanelplaceinfo.cpp
+++ b/indra/newview/llpanelplaceinfo.cpp
@@ -256,7 +256,7 @@ void LLPanelPlaceInfo::reshape(S32 width, S32 height, BOOL called_from_parent)
static LLUICachedControl<S32> scrollbar_size ("UIScrollbarSize", 0);
S32 scroll_height = mScrollContainer->getRect().getHeight();
- if (mScrollingPanelMinHeight >= scroll_height)
+ if (mScrollingPanelMinHeight > scroll_height)
{
mScrollingPanel->reshape(mScrollingPanelWidth, mScrollingPanelMinHeight);
}