mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-08-21 22:03:27 -07:00
Merge pull request #12187 from NotTsunami/keypress
Allow other keypresses in LogListWidget
This commit is contained in:
commit
4884f08e04
1 changed files with 2 additions and 2 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue