summaryrefslogtreecommitdiff
path: root/indra/newview/llhints.cpp
diff options
context:
space:
mode:
authorLoren Shih <seraph@lindenlab.com>2010-11-08 12:57:26 -0500
committerLoren Shih <seraph@lindenlab.com>2010-11-08 12:57:26 -0500
commita5e63b1dc0ce6c706de46dfea10784838e2d0257 (patch)
tree15c7d26720fe56bfc6adf796b20af4e3a5e94110 /indra/newview/llhints.cpp
parentb3ab10923d74e64e543b15d773639a856f9989e7 (diff)
parent124a59263184391b0b4ec418c532b7a715e9b5a3 (diff)
Merge
Diffstat (limited to 'indra/newview/llhints.cpp')
-rw-r--r--indra/newview/llhints.cpp9
1 files changed, 8 insertions, 1 deletions
diff --git a/indra/newview/llhints.cpp b/indra/newview/llhints.cpp
index 7f6df627e0..3f0deb98cd 100644
--- a/indra/newview/llhints.cpp
+++ b/indra/newview/llhints.cpp
@@ -109,7 +109,14 @@ public:
/*virtual*/ BOOL postBuild();
- void onClickClose() { hide(); LLNotifications::instance().cancel(mNotification); }
+ void onClickClose()
+ {
+ if (!mHidden)
+ {
+ hide();
+ LLNotifications::instance().cancel(mNotification);
+ }
+ }
void draw();
void hide() { if(!mHidden) {mHidden = true; mFadeTimer.reset();} }