aboutsummaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorEdward Welbourne <edward.welbourne@qt.io>2020-07-21 12:09:26 +0200
committerEdward Welbourne <edward.welbourne@qt.io>2020-07-22 11:16:08 +0200
commit3debb37250b2c57aaaf81940f9dfeb540fd4e380 (patch)
tree2461bf0915f870d66bebaac059a0af734cc399db /examples
parentb4d36a05be9f34976c1a1b5ea60ce03c4ab59a25 (diff)
Replace Qt's MidButton with MiddleButton
The latter has been the preferred name since Qt 4.7.0. Added a comment on where the old name is exposed to QML that it's only for backwards compatibility. Pick-to: 5.15 Change-Id: I2c5088d597dd7327cc5899d06afb180d0ec2893e Reviewed-by: Shawn Rutledge <shawn.rutledge@qt.io>
Diffstat (limited to 'examples')
-rw-r--r--examples/quick/mousearea/mousearea.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/quick/mousearea/mousearea.qml b/examples/quick/mousearea/mousearea.qml
index cecbc2cfc8..ff792f952d 100644
--- a/examples/quick/mousearea/mousearea.qml
+++ b/examples/quick/mousearea/mousearea.qml
@@ -81,7 +81,7 @@ Rectangle {
buttonID = 'LeftButton'
else if (mouse.button == Qt.RightButton)
buttonID = 'RightButton'
- else if (mouse.button == Qt.MidButton)
+ else if (mouse.button == Qt.MiddleButton)
buttonID = 'MiddleButton'
else if (mouse.button == Qt.BackButton)
buttonID = 'BackButton'