jfabry / LiveRobotProgramming

Live Robot Programming
http://pleiad.cl/lrp
8 stars 3 forks source link

Bug in highlighting of nodes, due to Roassal bug #33

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?

Code:
(machine blah
    (state foo
        (machine inner
            (state bleh)
        )
        (onentry (spawn inner bleh))
    )
    (state bar)

    (ontime 5000 foo -> bar t1)
    (ontime 500 bar -> foo t2)
)
(spawn blah foo)

visualize the 'inner' machine.

What is the expected output? What do you see instead?

The bleh state is never painted black. There is a bug in Roassal, put a self 
halt in LRPProgramVisualization>>highlightNode: and step through it to see it 
being colored.

Please use labels and text to provide additional information.

Original issue reported on code.google.com by jfa...@gmail.com on 25 Aug 2014 at 8:33

GoogleCodeExporter commented 9 years ago
This bug has fixed itself automagically.

Original comment by jfa...@gmail.com on 6 Oct 2014 at 1:56