mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
dc62e8248b
* feat: add resize handle to usercards&reply threads * Add changelog entry --------- Co-authored-by: Rasmus Karlsson <rasmus.karlsson@pajlada.com>
17 lines
353 B
C++
17 lines
353 B
C++
#include "widgets/helper/InvisibleSizeGrip.hpp"
|
|
|
|
namespace chatterino {
|
|
|
|
InvisibleSizeGrip::InvisibleSizeGrip(QWidget *parent)
|
|
: QSizeGrip(parent)
|
|
{
|
|
// required on Windows to prevent this from being ignored when dragging
|
|
this->setMouseTracking(true);
|
|
}
|
|
|
|
void InvisibleSizeGrip::paintEvent(QPaintEvent *event)
|
|
{
|
|
}
|
|
|
|
} // namespace chatterino
|