Skip to content

Commit

Permalink
Merge pull request #7077 from spycrab/qt_cheat_rich
Browse files Browse the repository at this point in the history
Qt/CheatCodeEditor: Don't accept rich text
  • Loading branch information
leoetlino committed Jun 5, 2018
2 parents 8675fa0 + 6346083 commit 7e45ff7
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Source/Core/DolphinQt2/Config/CheatCodeEditor.cpp
Expand Up @@ -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);
}

Expand Down

0 comments on commit 7e45ff7

Please sign in to comment.