Small fixes to "Option to hide mouse on inactivity" (#5280)

* Menubar: fix mouse tracking bug

* citra_qt: Fix copy/paste error
This commit is contained in:
Vitor K 2020-05-04 07:33:02 -03:00 committed by GitHub
parent e9819b61a6
commit 36809b2e2e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 5 deletions

View file

@ -299,7 +299,7 @@ void GRenderWindow::mousePressEvent(QMouseEvent* event) {
} else if (event->button() == Qt::RightButton) {
InputCommon::GetMotionEmu()->BeginTilt(pos.x(), pos.y());
}
QWidget::mouseMoveEvent(event);
QWidget::mousePressEvent(event);
}
void GRenderWindow::mouseMoveEvent(QMouseEvent* event) {