Details
-
Bug
-
Resolution: Unresolved
-
P3: Somewhat important
-
None
-
5.15.2
-
None
Description
ShapePath returns true for closed when it is empty, while Path does not.
I think Path is correct here and ShapePath incorrect.
Code to reproduce:
{{ShapePath { Component.onCompleted: console.log(closed, "shapePath") } Path { Component.onCompleted: console.log(closed, "path") }}}