Details
-
Sub-task
-
Resolution: Invalid
-
P1: Critical
-
None
Description
Setting the breakpoint in e.g. the onClicked method of this example doesn't show anything in the Locals and Watchers for me:
import Qt 4.7 Rectangle { width: 200 height: 323 MouseArea { anchors.fill: parent onClicked: { print("Hello World"); } } }