diff options
author | Leslie Linden <leslie@lindenlab.com> | 2012-01-17 11:07:11 -0800 |
---|---|---|
committer | Leslie Linden <leslie@lindenlab.com> | 2012-01-17 11:07:11 -0800 |
commit | dc0573be6cff912a20a2eab2ebd6ce61dc687ba6 (patch) | |
tree | d6a8012cd845931d994d587cd3f34e1b988175fb /indra/llui/llwindowshade.cpp | |
parent | 1f9529c0c2b02c4ceee912f8ecb35181174cc7cc (diff) | |
parent | 577479a3e53ef152da191e3a004aeb34f0815658 (diff) |
Merge with viewer-dd, attempt #1
Diffstat (limited to 'indra/llui/llwindowshade.cpp')
-rw-r--r-- | indra/llui/llwindowshade.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/indra/llui/llwindowshade.cpp b/indra/llui/llwindowshade.cpp index a8bb29374e..48a232c33e 100644 --- a/indra/llui/llwindowshade.cpp +++ b/indra/llui/llwindowshade.cpp @@ -371,6 +371,11 @@ void LLWindowShade::setTextColor(LLColor4 color) getChild<LLTextBox>("notification_text")->setColor(color); } +bool LLWindowShade::isShown() const +{ + return getChildRef<LLLayoutPanel>("notification_area").getVisible(); +} + void LLWindowShade::setCanClose(bool can_close) { getChildView("close_panel")->setVisible(can_close); |