https://bugs.kde.org/show_bug.cgi?id=396634

--- Comment #1 from Robert Voinea <rvoi...@gmail.com> ---
It seems that it does not crash all the time.
See the example below.

The crash occurs when I move the mouse pointer over the "elbow" text.

I have identified two distinct cases when this does not occur:
 - If I comment or remove the "when" line
 - If I import the plugin with "import MyPlugin 1.0" (instead of "import
MyPlugin 1.0 as MyPlugin")

Note: 
- Elbow is the data type defined in the plugin.
- Elbow.StyleLeft is an enum

import QtQuick 2.6
import MyPlugin 1.0 as MyPlugin

Item
{
        id: container
        MyPlugin.Elbow
        {
                id: elbow
                states: [
                        State
                        {
                                name: 'LeftTop'
                                when: (elbow.style == MyPlugin.Elbow.StyleLeft)
                        }
                ]
        }
}

-- 
You are receiving this mail because:
You are watching all bug changes.

Reply via email to