Skip to content

Commit

Permalink
fix: 修复移动播放窗口后,点击还原按钮无响应
Browse files Browse the repository at this point in the history
修复移动播放窗口后,点击还原按钮无响应

Bug: https://pms.uniontech.com/bug-view-293141.html
Log: 修复移动播放窗口后,点击还原按钮无响应
  • Loading branch information
myk1343 committed Jan 2, 2025
1 parent 15ae994 commit 168ee55
Showing 1 changed file with 7 additions and 1 deletion.
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

0 comments on commit 168ee55

Please sign in to comment.