From f3008c30796167c3368042c32e4f0fbc69055de2 Mon Sep 17 00:00:00 2001 From: Guillaume Munch Date: Sat, 29 Aug 2015 03:38:54 +0100 Subject: [PATCH] Fix bug #1996 \overrightarrow and related macros have a standard behaviour with respect to sub/superscripts. --- src/mathed/InsetMathDecoration.cpp | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/src/mathed/InsetMathDecoration.cpp b/src/mathed/InsetMathDecoration.cpp index 9b4a5ded13..b515d56e9f 100644 --- a/src/mathed/InsetMathDecoration.cpp +++ b/src/mathed/InsetMathDecoration.cpp @@ -59,13 +59,7 @@ bool InsetMathDecoration::isScriptable() const { return key_->name == "overbrace" || - key_->name == "underbrace" || - key_->name == "overleftarrow" || - key_->name == "overrightarrow" || - key_->name == "overleftrightarrow" || - key_->name == "underleftarrow" || - key_->name == "underrightarrow" || - key_->name == "underleftrightarrow"; + key_->name == "underbrace"; }