Details
-
Bug
-
Resolution: Unresolved
-
P3: Somewhat important
-
None
-
Qt Creator 15.0.0
-
None
Description
Dummy QML application with Main.qml:
import QtQuick Window { Item {} width: 640 height: 480 visible: true title: qsTr("Hello World") MouseArea { anchors.fill: parent onClicked: { console.log("click") } } }
Set break point on the console.log, start debugging, click in the application, it stops in the debugger.
When removing and re-adding the breakpoint a few times, I get the following soft assert:
SOFT ASSERT [10:11:46.933]: "m_state == assumedCurrent" in /Users/ziller/git/qt-creator/15.0/src/qtcreator/src/plugins/debugger/breakhandler.cpp:1259 6 2
It doesn't seem to appear when removing and re-adding the breakpoint once, but after doing it multiple times while the debugger is stopped at the breakpoint.