Skip to content

Commit

Permalink
fixed some warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
jurgenvinju committed Mar 14, 2024
1 parent ad39986 commit 33959a4
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/org/rascalmpl/library/vis/Graphs.rsc
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ CytoStyle defaultEdgeStyle()
\line-color = "black",
\target-arrow-color = "black",
\source-arrow-color = "black",
\target-arrow-shape = triangle(),
\target-arrow-shape = CytoArrowHeadStyle::triangle(),
\source-arrow-shape = CytoArrowHeadStyle::none(),
\curve-style = bezier(),
\label = "data(label)"
Expand All @@ -288,9 +288,9 @@ data CytoStyle
CytoFontWeight \font-weight = normal(),
str \background-color = "blue",
str label = "data(label)",
CytoNodeShape shape = circle(),
CytoHorizontalAlign \text-halign = center(),
CytoVerticalAlign \text-valign = \top(),
CytoNodeShape shape = CytoNodeShape::ellipse(),
CytoHorizontalAlign \text-halign = CytoHorizontalAlign::center(),
CytoVerticalAlign \text-valign = CytoVerticalAlign::\top(),
CytoTextWrap \text-wrap = CytoTextWrap::none(),
str \text-max-width = "100px",
CytoHorizontalAlign \text-justification = CytoHorizontalAlign::center(),
Expand All @@ -302,9 +302,9 @@ data CytoStyle
str color = "red",
str \target-arrow-color = "black",
str \source-arrow-color = "black",
CytoArrowHeadStyle \target-arrow-shape = triangle(),
CytoArrowHeadStyle \source-arrow-shape = none(),
CytoCurveStyle \curve-style = bezier(),
CytoArrowHeadStyle \target-arrow-shape = CytoArrowHeadStyle::triangle(),
CytoArrowHeadStyle \source-arrow-shape = CytoArrowHeadStyle::none(),
CytoCurveStyle \curve-style = CytoCurveStyle::bezier(),
int \source-text-offset = 1,
int \target-text-offset = 1,
str label = "data(label)"
Expand Down

0 comments on commit 33959a4

Please sign in to comment.