From 941e5dbcaa5af8b681d066d99acb55cc6bebecb9 Mon Sep 17 00:00:00 2001 From: mlangkabel Date: Tue, 27 Aug 2019 16:55:34 +0200 Subject: [PATCH] logic: fixed errors sometimes not clickable --- src/lib_gui/qt/view/QtErrorView.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib_gui/qt/view/QtErrorView.cpp b/src/lib_gui/qt/view/QtErrorView.cpp index 6791af4f..205eee2e 100644 --- a/src/lib_gui/qt/view/QtErrorView.cpp +++ b/src/lib_gui/qt/view/QtErrorView.cpp @@ -70,7 +70,7 @@ QtErrorView::QtErrorView(ViewLayout* viewLayout) return; } - Id errorId = m_model->item(index.row(), Column::ID)->text().toUInt(); + const Id errorId = m_model->item(index.row(), Column::ID)->text().toLongLong(); m_controllerProxy.executeAsTaskWithArgs(&ErrorController::showError, errorId); }