Qt: Fix log window mouse interaction

This commit is contained in:
Stenzek 2024-08-13 17:50:33 +10:00
parent 13a37418e6
commit 7756c5a5e9
No known key found for this signature in database

View file

@ -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)