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. (#5568)
  • Loading branch information
baldimir authored Oct 30, 2023
1 parent a1bed65 commit 827a21f
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 827a21f

Please sign in to comment.