diff options
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; |