diff --git a/tools/oven/src/ui/ResultsWindow.cpp b/tools/oven/src/ui/ResultsWindow.cpp index 99389f363c..36b7e83177 100644 --- a/tools/oven/src/ui/ResultsWindow.cpp +++ b/tools/oven/src/ui/ResultsWindow.cpp @@ -76,4 +76,7 @@ void ResultsWindow::changeStatusForRow(int rowIndex, const QString& result) { auto statusItem = new QTableWidgetItem(result); statusItem->setFlags(statusItem->flags() & ~Qt::ItemIsEditable); _resultsTable->setItem(rowIndex, 1, statusItem); + + // resize the row for the new contents + _resultsTable->resizeRowToContents(rowIndex); }