From f050fd96263f9eceb003f1b3e2c155f81111cc78 Mon Sep 17 00:00:00 2001 From: Juergen Spitzmueller Date: Mon, 14 Aug 2023 18:44:10 +0200 Subject: [PATCH] Fix cursor navigation in error dialog (#12876) --- src/frontends/qt/GuiErrorList.cpp | 2 ++ 1 file changed, 2 insertions(+) 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()));