Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: 修复移动播放窗口后,点击还原按钮无响应 #551

Merged
merged 1 commit into from
Jan 2, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion src/common/platform/platform_mainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1157,7 +1157,9 @@ bool Platform_MainWindow::event(QEvent *pEvent)
if (pEvent->type() == QEvent::WindowDeactivate) {
m_pCommHintWid->hide();
}

if (pEvent->type() == QEvent::Enter) {
m_bMouseMoved = false;
}
return DMainWindow::event(pEvent);
}

Expand Down Expand Up @@ -3636,6 +3638,10 @@ void Platform_MainWindow::moveEvent(QMoveEvent *pEvent)
QPoint relativePoint = mapToGlobal(QPoint(0, 0));
m_pToolbox->updateSliderPoint(relativePoint);
updateGeometryNotification(geometry().size());
xcb_generic_event_t *event = xcb_wait_for_event(QX11Info::connection());
if((event->response_type & ~0x80) != XCB_CONFIGURE_NOTIFY) {
m_bMouseMoved = false;
}
}

void Platform_MainWindow::keyPressEvent(QKeyEvent *pEvent)
Expand Down
Loading