Skip to content

Commit

Permalink
Fix border radius handling, see #1933
Browse files Browse the repository at this point in the history
  • Loading branch information
jonasbark committed Sep 28, 2024
1 parent b1fe711 commit e04c0be
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public boolean hasKey(String key) {

public Integer getInt(String key) throws Exception {
if (map.opt(key) instanceof Double) {
throw new Exception("We've got a double here");
return (int) getDouble(key);
}
return map.getInt(key);
}
Expand Down

0 comments on commit e04c0be

Please sign in to comment.