Re-focus workarea after some outline context-menu actions (see #1624)

Thanks Pavel for the main idea
This commit is contained in:
Juergen Spitzmueller 2024-09-24 08:47:55 +02:00
parent 194b53ef9d
commit 126cbec5e7

View File

@ -214,6 +214,8 @@ void TocWidget::doDispatch(Cursor & cur, FuncRequest const & cmd,
// Start an undo group.
cur.beginUndoGroup();
// re-focus the workarea after the action?
bool refocus_wa = false;
switch (cmd.action())
{
@ -259,6 +261,7 @@ void TocWidget::doDispatch(Cursor & cur, FuncRequest const & cmd,
: item.parIDs();
docstring const arg = (type.empty()) ? id : id + " " + type;
dispatch(FuncRequest(cmd, arg));
refocus_wa = true;
break;
}
@ -269,12 +272,22 @@ void TocWidget::doDispatch(Cursor & cur, FuncRequest const & cmd,
outline(cmd.action());
break;
case LFUN_LABEL_INSERT_AS_REFERENCE:
refocus_wa = true;
// fall through
default: {
FuncRequest tmpcmd(cmd);
if (inset)
inset->dispatch(cur, tmpcmd);
}
}
if (refocus_wa) {
QMainWindow * mw = static_cast<QMainWindow *>(&gui_view_);
if (mw) {
mw->activateWindow();
mw->setFocus();
}
}
cur.endUndoGroup();
}