diff --git a/src/duckstation-qt/coverdownloadwindow.cpp b/src/duckstation-qt/coverdownloadwindow.cpp index c8ef8aff2..ac23d3beb 100644 --- a/src/duckstation-qt/coverdownloadwindow.cpp +++ b/src/duckstation-qt/coverdownloadwindow.cpp @@ -25,7 +25,7 @@ CoverDownloadWindow::CoverDownloadWindow() : QWidget() connect(m_ui.start, &QPushButton::clicked, this, &CoverDownloadWindow::onStartClicked); connect(m_ui.close, &QPushButton::clicked, this, &CoverDownloadWindow::close); - connect(m_ui.urls, &QTextEdit::textChanged, this, &CoverDownloadWindow::updateEnabled); + connect(m_ui.urls, &QPlainTextEdit::textChanged, this, &CoverDownloadWindow::updateEnabled); const std::vector urls = Core::GetBaseStringListSetting("UI", "CoverDownloaderURL"); if (!urls.empty()) diff --git a/src/duckstation-qt/coverdownloadwindow.ui b/src/duckstation-qt/coverdownloadwindow.ui index 240e4b2a7..7b2b2ea37 100644 --- a/src/duckstation-qt/coverdownloadwindow.ui +++ b/src/duckstation-qt/coverdownloadwindow.ui @@ -7,7 +7,7 @@ 0 0 720 - 506 + 551 @@ -59,7 +59,7 @@ - + diff --git a/src/duckstation-qt/gamesummarywidget.cpp b/src/duckstation-qt/gamesummarywidget.cpp index 09b95e60b..2ed828129 100644 --- a/src/duckstation-qt/gamesummarywidget.cpp +++ b/src/duckstation-qt/gamesummarywidget.cpp @@ -27,7 +27,7 @@ #include #include #include -#include +#include #include "moc_gamesummarywidget.cpp" #include "ui_editgameserialdialog.h" @@ -498,9 +498,10 @@ void GameSummaryWidget::onCompatibilityCommentsClicked() QVBoxLayout* layout = new QVBoxLayout(dlg); - QTextBrowser* tb = new QTextBrowser(dlg); - tb->setMarkdown(m_compatibility_comments); - layout->addWidget(tb, 1); + QTextEdit* text = new QTextEdit(dlg); + text->setMarkdown(m_compatibility_comments); + text->setReadOnly(true); + layout->addWidget(text, 1); QDialogButtonBox* bb = new QDialogButtonBox(QDialogButtonBox::Close, dlg); connect(bb, &QDialogButtonBox::rejected, dlg, &QDialog::accept);