\overrightarrow and related macros have a standard behaviour with respect to
sub/superscripts.
This commit is contained in:
Guillaume Munch 2015-08-29 03:38:54 +01:00
parent 9c9cb97608
commit d186d708ea
2 changed files with 4 additions and 7 deletions

View File

@ -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";
}

View File

@ -76,6 +76,9 @@ What's new
- Reset cursor font when navigating with find or spellcheck (bug 9500).
- Correctly update previews when cursor leaves inset (bug 6173).
- Fix subscripts and superscripts of \overrightarrow and related macros
(bug 1996).
* INTERNALS