summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKuersat Akmaz2020-10-16 21:10:02 +0200
committerKuersat Akmaz2020-10-16 21:10:02 +0200
commit886d5c316da59a9667faee475c1d55c1040040ea (patch)
tree97242b79a465c8d755317d7b5e041909abe7adad
parentStart session_start script detached (diff)
downloadvmchooser2-feature/EnableHtmlInDescriptionField.tar.gz
vmchooser2-feature/EnableHtmlInDescriptionField.tar.xz
vmchooser2-feature/EnableHtmlInDescriptionField.zip
Allowed Html in textbrowser aka Beschreibungsfeldfeature/EnableHtmlInDescriptionField
Issue : #3732
-rw-r--r--src/dialog.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dialog.cpp b/src/dialog.cpp
index 94b271c..d5db566 100644
--- a/src/dialog.cpp
+++ b/src/dialog.cpp
@@ -586,7 +586,7 @@ void Dialog::treeView_selectionChanged(const QModelIndex& current, const QModelI
}
ui->label_name->setText(s->shortDescription());
ui->label_name->setToolTip(s->shortDescription());
- ui->textBrowser->setPlainText(s->description() + description);
+ ui->textBrowser->setHtml(s->description() + description);
}
void Dialog::on_tabButtonLocal_clicked() {