diff options
author | Richard Linden <none@none> | 2012-01-19 19:40:46 -0800 |
---|---|---|
committer | Richard Linden <none@none> | 2012-01-19 19:40:46 -0800 |
commit | a662b888ed02691b7790c23e31c7d8bcf7cf7f5b (patch) | |
tree | 09152b51229c0fdb1024526f9453402a801126f3 /indra/llui/llwindowshade.cpp | |
parent | 02641d4ef33fd6f296a9a29700ecdd55ef9dffd8 (diff) |
EXP-1824 FIX Received Items panel does not collapse correct when Height of panel is maximized in Inventory window
Diffstat (limited to 'indra/llui/llwindowshade.cpp')
-rw-r--r-- | indra/llui/llwindowshade.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llui/llwindowshade.cpp b/indra/llui/llwindowshade.cpp index 48a232c33e..f5c463c961 100644 --- a/indra/llui/llwindowshade.cpp +++ b/indra/llui/llwindowshade.cpp @@ -160,7 +160,7 @@ void LLWindowShade::draw() notification_area->reshape(notification_area->getRect().getWidth(), llclamp(message_rect.getHeight() + 15, - llmin(mFormHeight, MAX_NOTIFICATION_AREA_HEIGHT), + llmax(mFormHeight, MIN_NOTIFICATION_AREA_HEIGHT), MAX_NOTIFICATION_AREA_HEIGHT)); LLUICtrl::draw(); |