Activity log for bug #1566378

Date Who What changed Old value New value Message
2016-04-05 15:10:56 Andrea Bernabei bug added bug
2016-04-05 20:01:44 Andrea Bernabei ubuntu-ui-toolkit (Ubuntu): assignee Andrea Bernabei (faenil)
2016-04-05 20:01:49 Andrea Bernabei ubuntu-ui-toolkit (Ubuntu): importance Undecided Critical
2016-04-05 20:01:58 Andrea Bernabei ubuntu-ui-toolkit (Ubuntu): status New In Progress
2016-04-05 20:03:20 Andrea Bernabei branch linked lp:~faenil/ubuntu-ui-toolkit/mousefilter_setHovered_onMouseMove
2016-04-05 20:03:51 Andrea Bernabei ubuntu-ui-toolkit (Ubuntu): status In Progress Fix Committed
2016-04-12 11:48:03 Timo Jyrinki bug task added ubuntu-ui-toolkit (Ubuntu RTM)
2016-04-12 11:48:14 Timo Jyrinki bug task added canonical-devices-system-image
2016-04-12 11:48:24 Timo Jyrinki canonical-devices-system-image: assignee Zoltan Balogh (bzoltan)
2016-04-12 11:48:26 Timo Jyrinki canonical-devices-system-image: importance Undecided Critical
2016-04-12 11:48:27 Timo Jyrinki ubuntu-ui-toolkit (Ubuntu RTM): importance Undecided Critical
2016-04-12 11:48:28 Timo Jyrinki canonical-devices-system-image: milestone 11
2016-04-12 11:48:36 Timo Jyrinki ubuntu-ui-toolkit (Ubuntu RTM): assignee Andrea Bernabei (faenil)
2016-04-12 11:48:38 Timo Jyrinki ubuntu-ui-toolkit (Ubuntu RTM): status New Fix Committed
2016-04-12 11:48:44 Timo Jyrinki canonical-devices-system-image: status New In Progress
2016-04-14 12:15:57 Andrea Bernabei description r1921 Test case: import QtQuick 2.4 import Ubuntu.Components 1.3 MainView { applicationName: "test" width: units.gu(50) height: units.gu(40) Rectangle { anchors.fill: parent color: "yellow" MouseArea { anchors.fill: parent anchors.margins: units.gu(10) hoverEnabled: true onEntered: console.log("Mouse entered") onExited: console.log("Mouse exited") Mouse.enabled: true Mouse.onEntered: console.log("Mouse filter entered") Mouse.onExited: console.log("Mouse filter exited") Rectangle { anchors.fill: parent color: "blue" } } } } How to reproduce: 1) qmlscene testcase.qml 2) move the mouse inside the blue rectangle 3) press and hold the left button of the mouse 4) WITHOUT RELEASING the button, move the mouse outside the blue rectangle 5) (optional) move the mouse back inside the blue rectangle (still without releasing the button) Expected outcome (qml log): qml: Mouse filter entered qml: Mouse entered qml: Mouse exited qml: Mouse entered Actual log (qml log): qml: Mouse filter entered qml: Mouse entered qml: Mouse filter exited qml: Mouse exited qml: Mouse filter entered qml: Mouse entered r1921 Test case: import QtQuick 2.4 import Ubuntu.Components 1.3 MainView {     applicationName: "test"     width: units.gu(50)     height: units.gu(40)     Rectangle {         anchors.fill: parent         color: "yellow"         MouseArea {             anchors.fill: parent             anchors.margins: units.gu(10)             hoverEnabled: true             onEntered: console.log("Mouse entered")             onExited: console.log("Mouse exited")             Mouse.enabled: true             Mouse.onEntered: console.log("Mouse filter entered")             Mouse.onExited: console.log("Mouse filter exited")             Rectangle {                 anchors.fill: parent                 color: "blue"             }         }     } } How to reproduce: 1) qmlscene testcase.qml 2) move the mouse inside the blue rectangle 3) press and hold the left button of the mouse 4) WITHOUT RELEASING the button, move the mouse outside the blue rectangle 5) (optional) move the mouse back inside the blue rectangle (still without releasing the button) Actual outcome (qml log): qml: Mouse filter entered qml: Mouse entered qml: Mouse exited qml: Mouse entered Expected log (qml log): qml: Mouse filter entered qml: Mouse entered qml: Mouse filter exited qml: Mouse exited qml: Mouse filter entered qml: Mouse entered
2016-04-14 14:34:59 Łukasz Zemczak ubuntu-ui-toolkit (Ubuntu RTM): status Fix Committed Fix Released
2016-04-14 16:52:28 Jean-Baptiste Lallement canonical-devices-system-image: status In Progress Fix Committed
2016-05-30 15:39:00 Launchpad Janitor ubuntu-ui-toolkit (Ubuntu): status Fix Committed Fix Released
2016-06-02 12:11:45 Pat McGowan canonical-devices-system-image: status Fix Committed Fix Released