mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
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
|