mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-21 22:24:07 +01:00
added double click to resize handle
This commit is contained in:
parent
14f125ff87
commit
3303de18cd
2 changed files with 13 additions and 0 deletions
|
@ -1148,4 +1148,16 @@ void SplitContainer::ResizeHandle::mouseMoveEvent(QMouseEvent *event)
|
|||
}
|
||||
}
|
||||
|
||||
void SplitContainer::ResizeHandle::mouseDoubleClickEvent(QMouseEvent *event)
|
||||
{
|
||||
event->accept();
|
||||
|
||||
for (auto &sibling : this->node->getParent()->getChildren()) {
|
||||
sibling->flexH = 1;
|
||||
sibling->flexV = 1;
|
||||
}
|
||||
|
||||
this->parent->layout();
|
||||
}
|
||||
|
||||
} // namespace chatterino
|
||||
|
|
|
@ -156,6 +156,7 @@ private:
|
|||
void mousePressEvent(QMouseEvent *event) override;
|
||||
void mouseReleaseEvent(QMouseEvent *event) override;
|
||||
void mouseMoveEvent(QMouseEvent *event) override;
|
||||
void mouseDoubleClickEvent(QMouseEvent *event) override;
|
||||
|
||||
friend class SplitContainer;
|
||||
|
||||
|
|
Loading…
Reference in a new issue