From b97179963877bedd04231b137940244435822bab Mon Sep 17 00:00:00 2001 From: Lirusaito Date: Wed, 23 Jan 2019 22:23:15 -0500 Subject: [PATCH] Woah, woops! Fix double click crash!! --- indra/newview/llviewertexteditor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/indra/newview/llviewertexteditor.cpp b/indra/newview/llviewertexteditor.cpp index 8097f6e13..01d2014d2 100644 --- a/indra/newview/llviewertexteditor.cpp +++ b/indra/newview/llviewertexteditor.cpp @@ -875,7 +875,7 @@ BOOL LLViewerTextEditor::handleDoubleClick(S32 x, S32 y, MASK mask) } } - return handleDoubleClick(x, y, mask); + return LLTextEditor::handleDoubleClick(x, y, mask); }