Merge pull request #7077 from spycrab/qt_cheat_rich

Qt/CheatCodeEditor: Don't accept rich text
This commit is contained in:
Léo Lam 2018-06-05 15:56:14 +02:00 committed by GitHub
commit 7e45ff7a0d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -106,6 +106,9 @@ void CheatCodeEditor::CreateWidgets()
m_code_edit->setFont(monospace);
m_code_edit->setAcceptRichText(false);
m_notes_edit->setAcceptRichText(false);
setLayout(grid_layout);
}