aboutsummaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorEdward Welbourne <edward.welbourne@qt.io>2020-07-21 12:09:26 +0200
committerQt Cherry-pick Bot <cherrypick_bot@qt-project.org>2020-07-22 11:07:11 +0000
commitfdbe0f21744a1cc1785cd10346437b03029fe65d (patch)
tree2aecbc87ba26b095ac8098cbfeaf43bab928409c /examples
parentec1fc3aaa78c2c6a8ed660f26bc2c26b7d0c10bb (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. Change-Id: I2c5088d597dd7327cc5899d06afb180d0ec2893e Reviewed-by: Shawn Rutledge <shawn.rutledge@qt.io> (cherry picked from commit 3debb37250b2c57aaaf81940f9dfeb540fd4e380) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
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'