Fix regression of 359aef92f8

The context menu of newline insets was completely greyed out if one clicked
at the right of the inset. Thanks Scott for finding this. The fix is to undo
the cursor movement also for insets without settings, but with a context menu.
This commit is contained in:
Georg Baum 2016-03-15 21:35:50 +01:00
parent 0434f5676a
commit 4bab2ab5f8

View File

@ -2203,7 +2203,7 @@ void BufferView::mouseEventDispatch(FuncRequest const & cmd0)
// inset (depending on cmd.x(), cmd.y()). This is needed for
// editing to fix bug 9628, but e.g. the context menu needs a
// cursor in front of the inset.
if (inset->hasSettings() &&
if ((inset->hasSettings() || !inset->contextMenuName().empty()) &&
cur.nextInset() != inset && cur.prevInset() == inset)
cur.posBackward();
}