From 4da45fc728750baeb7259c08b16019e5e62963ac Mon Sep 17 00:00:00 2001 From: =?utf8?q?Andr=C3=A9=20P=C3=B6nitz?= Date: Thu, 12 Feb 2004 11:39:30 +0000 Subject: [PATCH] fix mathed crash on triple clicks git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@8423 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/mathed/math_nestinset.C | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/mathed/math_nestinset.C b/src/mathed/math_nestinset.C index d76c3515cc..f489193b82 100644 --- a/src/mathed/math_nestinset.C +++ b/src/mathed/math_nestinset.C @@ -386,6 +386,9 @@ MathNestInset::priv_dispatch(LCursor & cur, FuncRequest const & cmd) case LFUN_MOUSE_RELEASE: return lfunMouseRelease(cur, cmd); case LFUN_MOUSE_DOUBLE: + case LFUN_MOUSE_TRIPLE: + //lyxerr << "Mouse double" << endl; + //lyxerr << "Mouse triple" << endl; return dispatch(cur, FuncRequest(LFUN_WORDSEL)); case LFUN_RIGHTSEL: -- 2.39.5