Middle click split header to open in browser (#3356)

Co-authored-by: pajlada <rasmus.karlsson@pajlada.com>
This commit is contained in:
Auro 2021-11-20 08:27:26 -05:00 committed by GitHub
parent b1e891b122
commit 3a5c2b1d33
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 0 deletions

View file

@ -2,6 +2,7 @@
## Unversioned
- Minor: Added middle click split to open in browser (#3356)
- Minor: Added new search predicate to filter for messages matching a regex (#3282)
- Minor: Add `{channel.name}`, `{channel.id}`, `{stream.game}`, `{stream.title}`, `{my.id}`, `{my.name}` placeholders for commands (#3155)
- Minor: Remove TwitchEmotes.com attribution and the open/copy options when right-clicking a Twitch Emote. (#2214, #3136)

View file

@ -821,6 +821,11 @@ void SplitHeader::mousePressEvent(QMouseEvent *event)
menu->popup(this->mapToGlobal(event->pos() + QPoint(0, 4)));
}
break;
case Qt::MiddleButton: {
this->split_->openInBrowser();
}
break;
}
this->doubleClicked_ = false;