- 
    
Bug
 - 
    Resolution: Invalid
 - 
    
P1: Critical
 - 
    Qt Creator 2.2.0
 - 
    Linux 64 bit
Windows Vista x64 
1. creating a standard qml application and change the main.qml file to:
import QtQuick 1.0 Rectangle { id: root width: 360 height: 360 Text { id: myText text: "Hello World" anchors.centerIn: parent } MouseArea { anchors.fill: parent onClicked: { center() } } function center() { myText.anchors.fill = root } }
2. set a breakpoint to the center() methode
-> don't stops a the breakpoint