From 52e5a2d1d3d334d53d733d38628e581dbb6c7d50 Mon Sep 17 00:00:00 2001 From: "tatiana.novikova" <tatiana.novikova@demlabs.net> Date: Wed, 12 Feb 2020 12:27:18 +0000 Subject: [PATCH] [*] Update onEntered event for scroll --- widgets/DapScrollViewHandling.qml | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/widgets/DapScrollViewHandling.qml b/widgets/DapScrollViewHandling.qml index 5da84b5..8e4ffc5 100644 --- a/widgets/DapScrollViewHandling.qml +++ b/widgets/DapScrollViewHandling.qml @@ -21,14 +21,17 @@ MouseArea //If mouse pointer go to parent area onEntered: { - //ScrollButton is needed to be visible only if list lenght more than its height - scrollVisible = viewData.contentHeight > viewData.height; - //If user see the first element - if(viewData.atYBeginning) - scrollDirectionUp = false; - //If user see the last element - if(viewData.atYEnd) - scrollDirectionUp = true; + if(containsMouse) + { + //ScrollButton is needed to be visible only if list lenght more than its height + scrollVisible = viewData.contentHeight > viewData.height; + //If user see the first element + if(viewData.atYBeginning) + scrollDirectionUp = false; + //If user see the last element + if(viewData.atYEnd) + scrollDirectionUp = true; + } } //If mouse pointer go out the parent area -- GitLab