From 7756c5a5e982f44a8c39820dab90c5325da4c735 Mon Sep 17 00:00:00 2001 From: Stenzek Date: Tue, 13 Aug 2024 17:50:33 +1000 Subject: [PATCH] Qt: Fix log window mouse interaction --- src/duckstation-qt/logwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/duckstation-qt/logwindow.cpp b/src/duckstation-qt/logwindow.cpp index 03944fe44..b405cf722 100644 --- a/src/duckstation-qt/logwindow.cpp +++ b/src/duckstation-qt/logwindow.cpp @@ -171,7 +171,7 @@ void LogWindow::createUi() m_text = new QPlainTextEdit(this); m_text->setReadOnly(true); m_text->setUndoRedoEnabled(false); - m_text->setTextInteractionFlags(Qt::TextSelectableByKeyboard); + m_text->setTextInteractionFlags(Qt::TextSelectableByKeyboard | Qt::TextSelectableByMouse); m_text->setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOn); #if defined(_WIN32)