mirror of
https://github.com/lubosz/overte.git
synced 2025-04-09 20:24:03 +02:00
fix multi-line display in results window
This commit is contained in:
parent
3388debe9f
commit
383d82fe1d
1 changed files with 3 additions and 0 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue