summaryrefslogtreecommitdiff
path: root/indra/llui/llfloater.cpp
diff options
context:
space:
mode:
authorangela <angela@lindenlab.com>2010-03-09 15:59:27 +0800
committerangela <angela@lindenlab.com>2010-03-09 15:59:27 +0800
commit0fe35e068f8148604fe59bff7f80103e75fff07f (patch)
tree9b09bf8c06ed55a47fdb01192501c9b8a247d167 /indra/llui/llfloater.cpp
parent7593605ba056a104b245fd20bd65e97fcde9f26c (diff)
EXT-4684 Beacons are not shown when beacons floater is minimized
Diffstat (limited to 'indra/llui/llfloater.cpp')
-rw-r--r--indra/llui/llfloater.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/indra/llui/llfloater.cpp b/indra/llui/llfloater.cpp
index e91d753a39..1ba8b6964d 100644
--- a/indra/llui/llfloater.cpp
+++ b/indra/llui/llfloater.cpp
@@ -2820,3 +2820,15 @@ bool LLFloater::isShown(const LLFloater* floater)
{
return floater && floater->isShown();
}
+
+/* static */
+bool LLFloater::isMinimized(const LLFloater* floater)
+{
+ return floater && floater->isMinimized();
+}
+
+/* static */
+bool LLFloater::isVisible(const LLFloater* floater)
+{
+ return floater && floater->getVisible();
+} \ No newline at end of file