mirror-chatterino2/src/widgets/helper/InvisibleSizeGrip.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
353 B
C++
Raw Normal View History

#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