Skip to content

Commit

Permalink
Merge pull request #1775 from jimnelson372/hyperlinkUnderline
Browse files Browse the repository at this point in the history
Fixes issue ##1411: hyperlinkUnderline causes NumberFormatException
  • Loading branch information
arnaudroques committed May 11, 2024
2 parents cd988a2 + 33f63c8 commit b10082c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/net/sourceforge/plantuml/style/FromSkinparamToStyle.java
Original file line number Diff line number Diff line change
Expand Up @@ -297,6 +297,8 @@ else if (value.equalsIgnoreCase("true"))
} else if (key.equals("hyperlinkunderline")) {
if (value.equalsIgnoreCase("false"))
value = "0";
if (value.equalsIgnoreCase("true"))
value = "1";
}

if (value.equalsIgnoreCase("right:right"))
Expand Down

0 comments on commit b10082c

Please sign in to comment.