mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-31 05:08:57 +00:00
Qt: Fix deprecated use of MidButton
MidButton has been deprecated since Qt 4.7. The replacement is MiddleButton.
This commit is contained in:
parent
efdb620783
commit
6018525992
2 changed files with 2 additions and 2 deletions
|
@ -141,7 +141,7 @@ void MappingButton::mouseReleaseEvent(QMouseEvent* event)
|
|||
{
|
||||
switch (event->button())
|
||||
{
|
||||
case Qt::MouseButton::MidButton:
|
||||
case Qt::MouseButton::MiddleButton:
|
||||
Clear();
|
||||
return;
|
||||
case Qt::MouseButton::RightButton:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue