From: Juergen Spitzmueller Date: Tue, 24 Sep 2024 06:47:55 +0000 (+0200) Subject: Re-focus workarea after some outline context-menu actions (see #1624) X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=126cbec5e7c7d73c2a9f20f74b5d478b4e166507;p=lyx.git Re-focus workarea after some outline context-menu actions (see #1624) Thanks Pavel for the main idea --- diff --git a/src/frontends/qt/TocWidget.cpp b/src/frontends/qt/TocWidget.cpp index dc9667ca17..c91a3b728c 100644 --- a/src/frontends/qt/TocWidget.cpp +++ b/src/frontends/qt/TocWidget.cpp @@ -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(&gui_view_); + if (mw) { + mw->activateWindow(); + mw->setFocus(); + } + } cur.endUndoGroup(); }