Details
-
Bug
-
Resolution: Out of scope
-
P2: Important
-
None
-
5.11.2, 5.12.1
-
Nexus 7 2012, Android 5.1.1
Description
Below sample QML won't fill color in bottom of triangle area. Please see attached Nexus7_2-12.png.
import QtQuick 2.11 import QtQuick.Window 2.11 import QtQuick.Shapes 1.11 Window { visible: true width: 640 height: 480 title: qsTr("Hello World") Shape { id: penta x: 10 y: 10 width: 50 height: 200 ShapePath { strokeWidth: 1 strokeColor: "blue" fillColor: "red" startX: 0 startY: 0 PathLine { x: 0; y: 150 } PathLine { x: penta.width/2; y: penta.height } PathLine { x: penta.width; y: 150 } PathLine { x: penta.width; y: 0} PathLine { x: 0; y: 0} } } }
Causing only on Nexus 7 2012 with Android 5.1.1. Other such as SH-M05(Android 8.0.0) and Windows working correctly.