mirror of
https://github.com/zhuzichu520/FluentUI.git
synced 2024-11-22 19:00:07 +08:00
fix bug
This commit is contained in:
parent
19a947ffab
commit
62aead3855
@ -116,7 +116,8 @@ bool FramelessEventFilter::nativeEventFilter(const QByteArray &eventType, void *
|
||||
short y = HIWORD(msg->lParam);
|
||||
int margins = _helper->getMargins();
|
||||
QPointer<QQuickWindow> win = _helper->window;
|
||||
QPoint pos = win->mapFromGlobal(QPoint(x, y));
|
||||
qreal dp = _helper->window->devicePixelRatio();
|
||||
QPoint pos = win->mapFromGlobal(QPoint(x/dp, y/dp));
|
||||
bool left = pos.x() < margins;
|
||||
bool right = pos.x() > win->width() - margins;
|
||||
bool top = pos.y() < margins;
|
||||
|
Loading…
Reference in New Issue
Block a user