Middle click split header to open in browser (#3356)
Co-authored-by: pajlada <rasmus.karlsson@pajlada.com>
This commit is contained in:
@@ -2,6 +2,7 @@
|
|||||||
|
|
||||||
## Unversioned
|
## 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: 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: 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)
|
- Minor: Remove TwitchEmotes.com attribution and the open/copy options when right-clicking a Twitch Emote. (#2214, #3136)
|
||||||
|
|||||||
@@ -821,6 +821,11 @@ void SplitHeader::mousePressEvent(QMouseEvent *event)
|
|||||||
menu->popup(this->mapToGlobal(event->pos() + QPoint(0, 4)));
|
menu->popup(this->mapToGlobal(event->pos() + QPoint(0, 4)));
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case Qt::MiddleButton: {
|
||||||
|
this->split_->openInBrowser();
|
||||||
|
}
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
this->doubleClicked_ = false;
|
this->doubleClicked_ = false;
|
||||||
|
|||||||
Reference in New Issue
Block a user