Browse Source

Merge pull request #12187 from NotTsunami/keypress

Allow other keypresses in LogListWidget
adaptive-webui-19844
Mike Tzou 5 years ago committed by GitHub
parent
commit
4884f08e04
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      src/gui/loglistwidget.cpp

4
src/gui/loglistwidget.cpp

@ -72,8 +72,8 @@ void LogListWidget::keyPressEvent(QKeyEvent *event)
{ {
if (event->matches(QKeySequence::Copy)) if (event->matches(QKeySequence::Copy))
copySelection(); copySelection();
else if (event->matches(QKeySequence::SelectAll)) else
selectAll(); QListWidget::keyPressEvent(event);
} }
void LogListWidget::appendLine(const QString &line, const Log::MsgType &type) void LogListWidget::appendLine(const QString &line, const Log::MsgType &type)

Loading…
Cancel
Save