Skip to content

Commit

Permalink
Change Overpass font to more widely used Arial in ReteDiagram generat…
Browse files Browse the repository at this point in the history
…or. (apache#5568)
  • Loading branch information
baldimir authored and rgdoliveira committed Dec 13, 2023
1 parent 8738e11 commit 9ec59aa
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -164,9 +164,9 @@ public void diagramRete(Rete rete) {
File pngFile = new File(outputPath, pngFileName);
try (PrintStream out = new PrintStream(new FileOutputStream(gvFile));) {
out.println("digraph g {\n" +
"graph [fontname = \"Overpass\" fontsize=11];\n" +
" node [fontname = \"Overpass\" fontsize=11];\n" +
" edge [fontname = \"Overpass\" fontsize=11];");
"graph [fontname = \"Arial\" fontsize=11];\n" +
" node [fontname = \"Arial\" fontsize=11];\n" +
" edge [fontname = \"Arial\" fontsize=11];");
HashMap<Class<? extends BaseNode>, Set<BaseNode>> levelMap = new HashMap<>();
HashMap<Class<? extends BaseNode>, List<BaseNode>> nodeMap = new HashMap<>();
List<Vertex<BaseNode,BaseNode>> vertexes = new ArrayList<>();
Expand Down

0 comments on commit 9ec59aa

Please sign in to comment.