Skip to content

Commit

Permalink
fixed rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
nmacedo authored and pkriens committed Jul 21, 2024
1 parent 0176537 commit 782d423
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -967,12 +967,12 @@ public final void focusLost(FocusEvent e) {
}
case TEXT : {
List<String> textualOutput = IntStream.range(current, current + numPanes).mapToObj(x -> myStates.get(0).getOriginalInstance().originalA4.toString(x)).collect(Collectors.toList());
content = getTextComponent(textualOutput);
content = getTextComponent(textualOutput, true);
break;
}
case TABLE : {
List<String> textualOutput = IntStream.range(current, current + numPanes).mapToObj(x -> myStates.get(0).getOriginalInstance().originalA4.format(x)).collect(Collectors.toList());
content = getTextComponent(textualOutput);
content = getTextComponent(textualOutput, false);
break;
}
default : {
Expand Down

0 comments on commit 782d423

Please sign in to comment.