diff options
author | Richard Linden <none@none> | 2010-11-01 13:45:55 -0700 |
---|---|---|
committer | Richard Linden <none@none> | 2010-11-01 13:45:55 -0700 |
commit | 38a182f62fcdd3c8e684459bf29a434bf36dbce2 (patch) | |
tree | 04f40a785162470f20fb6af52bde349bb6d0100d /indra/newview | |
parent | de11ebefe905f011b4e8f38f8f9ed8832bdb87e8 (diff) |
EXP-371 Chat/IM bubble notifications not aligned with bottom bar
Diffstat (limited to 'indra/newview')
-rw-r--r-- | indra/newview/llscreenchannel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llscreenchannel.cpp b/indra/newview/llscreenchannel.cpp index b90ff80294..5a36393f28 100644 --- a/indra/newview/llscreenchannel.cpp +++ b/indra/newview/llscreenchannel.cpp @@ -145,7 +145,7 @@ void LLScreenChannelBase::init(S32 channel_left, S32 channel_right) void LLScreenChannelBase::updateBottom() { S32 channel_top = gViewerWindow->getWorldViewRectScaled().getHeight(); - S32 channel_bottom = gViewerWindow->getWorldViewRectScaled().mBottom + gSavedSettings.getS32("ChannelBottomPanelMargin"); + S32 channel_bottom = gSavedSettings.getS32("ChannelBottomPanelMargin"); S32 channel_left = getRect().mLeft; S32 channel_right = getRect().mRight; setRect(LLRect(channel_left, channel_top, channel_right, channel_bottom)); |