diff options
| -rw-r--r-- | indra/newview/lltoastimpanel.cpp | 4 | ||||
| -rw-r--r-- | indra/newview/lltoastimpanel.h | 2 | 
2 files changed, 3 insertions, 3 deletions
| diff --git a/indra/newview/lltoastimpanel.cpp b/indra/newview/lltoastimpanel.cpp index e0cb200ef5..75e6e3d13a 100644 --- a/indra/newview/lltoastimpanel.cpp +++ b/indra/newview/lltoastimpanel.cpp @@ -104,9 +104,9 @@ LLToastIMPanel::~LLToastIMPanel()  }  //virtual -BOOL LLToastIMPanel::handleMouseDown(S32 x, S32 y, MASK mask) +BOOL LLToastIMPanel::handleMouseUp(S32 x, S32 y, MASK mask)  { -	if (LLPanel::handleMouseDown(x,y,mask) == FALSE) +	if (LLPanel::handleMouseUp(x,y,mask) == FALSE)  	{  		mNotification->respond(mNotification->getResponseTemplate());  	} diff --git a/indra/newview/lltoastimpanel.h b/indra/newview/lltoastimpanel.h index 279dd69bc7..3eb11fb3bc 100644 --- a/indra/newview/lltoastimpanel.h +++ b/indra/newview/lltoastimpanel.h @@ -52,7 +52,7 @@ public:  	LLToastIMPanel(LLToastIMPanel::Params &p);  	virtual ~LLToastIMPanel(); -	/*virtual*/ BOOL 	handleMouseDown(S32 x, S32 y, MASK mask); +	/*virtual*/ BOOL 	handleMouseUp(S32 x, S32 y, MASK mask);  	/*virtual*/ BOOL	handleToolTip(S32 x, S32 y, MASK mask);  private:  	void showInspector(); | 
