From 62b9513353900079602bf29c3b8863697a50e46f Mon Sep 17 00:00:00 2001
From: "Andrew A. de Laix" <alain@lindenlab.com>
Date: Mon, 13 Dec 2010 12:37:34 -0800
Subject: [PATCH] permit flush when disabled.

---
 indra/llcommon/llevents.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/indra/llcommon/llevents.cpp b/indra/llcommon/llevents.cpp
index 723cbd68c7f..97e2bdeb575 100644
--- a/indra/llcommon/llevents.cpp
+++ b/indra/llcommon/llevents.cpp
@@ -515,7 +515,7 @@ bool LLEventQueue::post(const LLSD& event)
 
 void LLEventQueue::flush()
 {
-	if(!mEnabled || !mSignal) return;
+	if(!mSignal) return;
 		
     // Consider the case when a given listener on this LLEventQueue posts yet
     // another event on the same queue. If we loop over mEventQueue directly,
-- 
GitLab