diff options
author | Steven Bennetts <steve@lindenlab.com> | 2007-02-27 01:03:39 +0000 |
---|---|---|
committer | Steven Bennetts <steve@lindenlab.com> | 2007-02-27 01:03:39 +0000 |
commit | 647d29b1a2d4712ea738b408be43e56895a715b1 (patch) | |
tree | 8db33983be6e10c05895f9774bfbad81a3f6ae81 /indra/llui/llpanel.cpp | |
parent | c4b5b3977ffa6669a00f9bc334db02f51cc10fcb (diff) |
merge -r 58285:58437 maintenance.
Diffstat (limited to 'indra/llui/llpanel.cpp')
-rw-r--r-- | indra/llui/llpanel.cpp | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/indra/llui/llpanel.cpp b/indra/llui/llpanel.cpp index de65ce14f6..406b5ef571 100644 --- a/indra/llui/llpanel.cpp +++ b/indra/llui/llpanel.cpp @@ -164,10 +164,11 @@ void LLPanel::draw() // draw background if( mBgVisible ) { - S32 left = LLPANEL_BORDER_WIDTH; - S32 top = mRect.getHeight() - LLPANEL_BORDER_WIDTH; - S32 right = mRect.getWidth() - LLPANEL_BORDER_WIDTH; - S32 bottom = LLPANEL_BORDER_WIDTH; + //RN: I don't see the point of this + S32 left = 0;//LLPANEL_BORDER_WIDTH; + S32 top = mRect.getHeight();// - LLPANEL_BORDER_WIDTH; + S32 right = mRect.getWidth();// - LLPANEL_BORDER_WIDTH; + S32 bottom = 0;//LLPANEL_BORDER_WIDTH; if (mBgOpaque ) { @@ -459,6 +460,11 @@ void LLPanel::setBackgroundColor(const LLColor4& color) mBgColorOpaque = color; } +LLColor4 LLPanel::getBackgroundColor() +{ + return mBgColorOpaque; +} + void LLPanel::setTransparentColor(const LLColor4& color) { mBgColorAlpha = color; |