Skip to content

Commit

Permalink
#2918 Semantic browser now properly displayed text decorators
Browse files Browse the repository at this point in the history
Signed-off-by: Erwann TRAISNEL <[email protected]>
  • Loading branch information
Erwann TRAISNEL authored and Erwann TRAISNEL committed Nov 27, 2024
1 parent 98e77d9 commit a39be59
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public List<Object> compute(Object object) {
if (object instanceof State) {
State state = (State) object;

List<State> subStates = StateExt.getNonPseudoRecursiveSubStates(state);
List<Object> subStates = StateExt.getRecursiveSubStates(state);
for (Object obj : subStates) {
result.addAll(StateExt.getActiveElements((State) obj));
}
Expand Down

0 comments on commit a39be59

Please sign in to comment.