diff options
| author | Jeremy Rimpo <jeremy.rimpo@servermonkey.com> | 2017-10-23 16:11:38 -0500 |
|---|---|---|
| committer | Jeremy Rimpo <jeremy.rimpo@servermonkey.com> | 2017-10-23 16:11:38 -0500 |
| commit | 0c6f9831489840bdb3e74f1cdaa1e6f970d8d428 (patch) | |
| tree | e1f633db13c8624a8c1062c6678e4af40f11cc35 /src/tutorials/TooltipArea.qml | |
| parent | ac3953030df11f8c9356fa8998c795608f3180e0 (diff) | |
Fix up tutorial scripts
* Patches for QtQuick 2.x
* Fix up tab refs, names, and other out-of-date info
Diffstat (limited to 'src/tutorials/TooltipArea.qml')
| -rw-r--r-- | src/tutorials/TooltipArea.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tutorials/TooltipArea.qml b/src/tutorials/TooltipArea.qml index b6b3d073..8d404beb 100644 --- a/src/tutorials/TooltipArea.qml +++ b/src/tutorials/TooltipArea.qml @@ -17,7 +17,7 @@ Rectangle { anchors.fill: parent
hoverEnabled: true
- onMousePositionChanged: {
+ onPositionChanged: {
if (parent.parent.width - (parent.x + mouseX) < tooltip.width + 50) {
tooltip.x = parent.x + mouseX - 15 - tooltip.width
} else {
|
