fix multi-line display in results window

This commit is contained in:
Stephen Birarda 2017-04-17 10:04:38 -07:00
parent 3388debe9f
commit 383d82fe1d

View file

@ -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);
}