diff options
author | Richard Linden <none@none> | 2011-12-12 12:32:22 -0800 |
---|---|---|
committer | Richard Linden <none@none> | 2011-12-12 12:32:22 -0800 |
commit | 40a74eb5b77493e66587a01b6655d405c75e3a59 (patch) | |
tree | 201c40c39d653c92a3745043094cd03a3713eee9 /indra/llui/llpanel.h | |
parent | 29570bdc96af39579a09ec77ec9cb74ab124f682 (diff) |
EXP-1711 FIX LLWindowShade doesn't stack multiple notifications
Diffstat (limited to 'indra/llui/llpanel.h')
-rw-r--r-- | indra/llui/llpanel.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/indra/llui/llpanel.h b/indra/llui/llpanel.h index cd33938226..f620201020 100644 --- a/indra/llui/llpanel.h +++ b/indra/llui/llpanel.h @@ -135,6 +135,8 @@ public: const LLColor4& getBackgroundColor() const { return mBgOpaqueColor; } void setTransparentColor(const LLColor4& color) { mBgAlphaColor = color; } const LLColor4& getTransparentColor() const { return mBgAlphaColor; } + void setBackgroundImage(LLUIImage* image) { mBgOpaqueImage = image; } + void setTransparentImage(LLUIImage* image) { mBgAlphaImage = image; } LLPointer<LLUIImage> getBackgroundImage() const { return mBgOpaqueImage; } LLPointer<LLUIImage> getTransparentImage() const { return mBgAlphaImage; } LLColor4 getBackgroundImageOverlay() { return mBgOpaqueImageOverlay; } |