diff options
author | Igor Borovkov <iborovkov@productengine.com> | 2010-02-03 16:57:24 +0200 |
---|---|---|
committer | Igor Borovkov <iborovkov@productengine.com> | 2010-02-03 16:57:24 +0200 |
commit | 906ee0cc6348fc3cce70f971f3009924550c24be (patch) | |
tree | 560ca9f043a048138e4f76a1c7897014a683e0d5 | |
parent | 5ec6cc4fe1ff4c042b31285e62683eb3f4e9c73d (diff) |
fix for reopened EXT-4578 Noninteractive voice notifications should have close affordance
--HG--
branch : product-engine
-rw-r--r-- | indra/newview/llimview.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/indra/newview/llimview.cpp b/indra/newview/llimview.cpp index 9a3a4c0125..0c64c2b032 100644 --- a/indra/newview/llimview.cpp +++ b/indra/newview/llimview.cpp @@ -1709,6 +1709,8 @@ BOOL LLOutgoingCallDialog::postBuild() childSetAction("Cancel", onCancel, this); + setCanDrag(FALSE); + return success; } @@ -1808,6 +1810,8 @@ BOOL LLIncomingCallDialog::postBuild() mLifetimeTimer.stop(); } + setCanDrag(FALSE); + return TRUE; } |