mirror of
https://github.com/sqlitebrowser/sqlitebrowser.git
synced 2026-01-20 11:00:44 -06:00
Fix escaping of Execute SQL results
Fix the HTML escaping of the success/error messages at the bottom of the Execute SQL tab. This also simplifies the code a bit. See issue #823.
This commit is contained in:
@@ -50,7 +50,7 @@ QString SqlExecutionArea::getSelectedSql() const
|
||||
|
||||
void SqlExecutionArea::finishExecution(const QString& result)
|
||||
{
|
||||
ui->editErrors->setText(result);
|
||||
ui->editErrors->setPlainText(result);
|
||||
|
||||
// Set column widths according to their contents but make sure they don't exceed a certain size
|
||||
ui->tableResult->resizeColumnsToContents();
|
||||
|
||||
Reference in New Issue
Block a user