From: Juergen Spitzmueller Date: Mon, 14 Aug 2023 16:44:10 +0000 (+0200) Subject: Fix cursor navigation in error dialog (#12876) X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=f050fd96263f9eceb003f1b3e2c155f81111cc78;p=features.git Fix cursor navigation in error dialog (#12876) --- diff --git a/src/frontends/qt/GuiErrorList.cpp b/src/frontends/qt/GuiErrorList.cpp index e7dc3766f5..703c7150a3 100644 --- a/src/frontends/qt/GuiErrorList.cpp +++ b/src/frontends/qt/GuiErrorList.cpp @@ -67,6 +67,8 @@ GuiErrorList::GuiErrorList(GuiView & lv) this, SLOT(viewLog())); connect(showAnywayPB, SIGNAL(clicked()), this, SLOT(showAnyway())); + connect(errorsLW, SIGNAL(itemClicked(QListWidgetItem *)), + this, SLOT(select())); connect(errorsLW, SIGNAL(currentRowChanged(int)), this, SLOT(select()));