mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
Made left-clicking splitheader focus split (#2720)
This commit is contained in:
parent
77fa1322de
commit
6c9fd4f204
|
@ -8,6 +8,7 @@
|
||||||
- Minor: Optionally remove spaces between emotes, originally made for Mm2PL/Dankerino. (#2651)
|
- Minor: Optionally remove spaces between emotes, originally made for Mm2PL/Dankerino. (#2651)
|
||||||
- Bugfix: Added missing Copy/Open link context menu entries to emotes in Emote Picker. (#2670)
|
- Bugfix: Added missing Copy/Open link context menu entries to emotes in Emote Picker. (#2670)
|
||||||
- Bugfix: Fixed visual glitch with smooth scrolling. (#2084)
|
- Bugfix: Fixed visual glitch with smooth scrolling. (#2084)
|
||||||
|
- Bugfix: Clicking on split header focuses its split. (#2720)
|
||||||
|
|
||||||
## 2.3.0
|
## 2.3.0
|
||||||
|
|
||||||
|
|
|
@ -805,6 +805,8 @@ void SplitHeader::mousePressEvent(QMouseEvent *event)
|
||||||
switch (event->button())
|
switch (event->button())
|
||||||
{
|
{
|
||||||
case Qt::LeftButton: {
|
case Qt::LeftButton: {
|
||||||
|
this->split_->giveFocus(Qt::MouseFocusReason);
|
||||||
|
|
||||||
this->dragging_ = true;
|
this->dragging_ = true;
|
||||||
|
|
||||||
this->dragStart_ = event->pos();
|
this->dragStart_ = event->pos();
|
||||||
|
|
Loading…
Reference in a new issue