mirror of
https://github.com/ankitects/anki.git
synced 2025-09-19 06:22:22 -04:00
Media check suffered from the same text box slowdown as the importing screen
This commit is contained in:
parent
c23b01978d
commit
6ac35b30c1
1 changed files with 2 additions and 1 deletions
|
@ -97,9 +97,10 @@ class MediaChecker:
|
|||
disable_help_button(diag)
|
||||
layout = QVBoxLayout(diag)
|
||||
diag.setLayout(layout)
|
||||
text = QTextEdit()
|
||||
text = QPlainTextEdit()
|
||||
text.setReadOnly(True)
|
||||
text.setPlainText(report)
|
||||
text.setWordWrapMode(QTextOption.NoWrap)
|
||||
layout.addWidget(text)
|
||||
box = QDialogButtonBox(QDialogButtonBox.Close)
|
||||
layout.addWidget(box)
|
||||
|
|
Loading…
Reference in a new issue