Break Step In-Place Editing

A Break script step, whose only displayed parameter indicates the loop it refers to, is not editable in-place.

Example:

  Assign a 1
 Assign b 1
 While $a
    TclEval puts "looping..."
    TclEval incr b
    If $b==10
        Break
    EndIf
 EndWhile