Skip to content

Commit

Permalink
fix: disable creole for file listing
Browse files Browse the repository at this point in the history
  • Loading branch information
arnaudroques committed Nov 23, 2023
1 parent a98d8cc commit bcb3b92
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/net/sourceforge/plantuml/filesdiagram/FEntry.java
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ private TextBlock getTextBlock(FontConfiguration fontConfiguration, ISkinParam s
return createOpale();

final Display display = Display.getWithNewlines(getEmoticon() + getName());
TextBlock result = display.create(fontConfiguration, HorizontalAlignment.LEFT, skinParam);
TextBlock result = display.create7(fontConfiguration, HorizontalAlignment.LEFT, skinParam, CreoleMode.NO_CREOLE);
return result;
}

Expand Down

0 comments on commit bcb3b92

Please sign in to comment.