ManualActivityWizard - Don't allow rich text on Notes

Like we do in other TextBox cases, this also preserves
entered tabs in the text allowing a simple form of
tabular format.
This commit is contained in:
Alejandro Martinez
2025-07-04 11:23:08 -03:00
parent 56ff6ff73e
commit 17dfbb3a30

View File

@@ -279,6 +279,8 @@ ManualActivityPageBasics::ManualActivityPageBasics
QLabel *notesLabel = new QLabel(tr("Notes"));
QTextEdit *notesEdit = new QTextEdit();
// rich text hangs 'fontd' for some users
notesEdit->setAcceptRichText(false);
QLabel *woTypeLabel = new QLabel(tr("Type") + MANDATORY);
QComboBox *woTypeEdit = new QComboBox();