Further cleanup

Signed-off-by: Yuhang Zhao <2546789017@qq.com>
This commit is contained in:
Yuhang Zhao 2021-06-01 09:42:43 +08:00
parent 38a64e25b3
commit e769d10a19
1 changed files with 0 additions and 6 deletions

View File

@ -107,8 +107,6 @@ bool FramelessHelper::eventFilter(QObject *object, QEvent *event)
// QWindow will always be a top level window. It can't // QWindow will always be a top level window. It can't
// be anyone's child window. // be anyone's child window.
const auto currentWindow = qobject_cast<QWindow *>(object); const auto currentWindow = qobject_cast<QWindow *>(object);
static bool m_bIsMRBPressed = false;
static QPointF m_pOldMousePos = {};
const auto getWindowEdges = const auto getWindowEdges =
[this](const QPointF &point, const int ww, const int wh) -> Qt::Edges { [this](const QPointF &point, const int ww, const int wh) -> Qt::Edges {
if (point.y() <= m_borderHeight) { if (point.y() <= m_borderHeight) {
@ -222,8 +220,6 @@ bool FramelessHelper::eventFilter(QObject *object, QEvent *event)
if (mouseEvent->button() != Qt::MouseButton::LeftButton) { if (mouseEvent->button() != Qt::MouseButton::LeftButton) {
break; break;
} }
m_bIsMRBPressed = true;
m_pOldMousePos = getMousePos(mouseEvent, true);
moveOrResize(getMousePos(mouseEvent, false), currentWindow); moveOrResize(getMousePos(mouseEvent, false), currentWindow);
} }
} break; } break;
@ -245,8 +241,6 @@ bool FramelessHelper::eventFilter(QObject *object, QEvent *event)
if (mouseEvent->button() != Qt::MouseButton::LeftButton) { if (mouseEvent->button() != Qt::MouseButton::LeftButton) {
break; break;
} }
m_bIsMRBPressed = false;
m_pOldMousePos = {};
} }
} break; } break;
case QEvent::TouchBegin: case QEvent::TouchBegin: