Details
-
Bug
-
Resolution: Fixed
-
P2: Important
-
5.15.11, 6.2.6, 6.4.1, 6.5.5, 6.6.3, 6.7.0
-
Windows 10 Pro 22H2, MSVC 2019 x64
-
2c966b97b (dev), 9c8577c12 (dev)
Description
https://doc.qt.io/qt-6/qscxmlstatemachine.html#start says, "The machine will reset its configuration and transition to the initial state." However, it looks like the old/stale state is retained.
Steps to reproduce
- Build and run the attached project
- Click "Start"
- Keep clicking "Next" until the machine reports that it is "Finished"
- Click "Stop"
- Click "Start" again
(Note: Step #4 has no effect and can be omitted from the test above. It was included for completeness.)
Outcomes: Up till Step #3
So far so good:
Starting... Running?: true Entering "State1" -- Active states: "State1" Exiting "State1" -- Active states: "" Entering "State2" -- Active states: "State2" Exiting "State2" -- Active states: "" Entering "State3" -- Active states: "State3" Exiting "State3" -- Active states: "" Running?: false Entering "Final" -- Active states: "Final" Finished
Actual outcome: Step #5
Starting... Running?: true Entering "State1" -- Active states: "Final|State1"
Expected outcome: Step #5
Starting... Running?: true Entering "State1" -- Active states: "State1"