Skip to content

Commit 3c7e030

Browse files
committed
Make border-radius property values unique.
DEVSIX-1569
1 parent cf5430a commit 3c7e030

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

layout/src/main/java/com/itextpdf/layout/property/Property.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -67,14 +67,14 @@ private Property() {
6767
public static final int BOLD_SIMULATION = 8;
6868
public static final int BORDER = 9;
6969
public static final int BORDER_BOTTOM = 10;
70-
public static final int BORDER_BOTTOM_LEFT_RADIUS = 113;
71-
public static final int BORDER_BOTTOM_RIGHT_RADIUS = 112;
70+
public static final int BORDER_BOTTOM_LEFT_RADIUS = 114;
71+
public static final int BORDER_BOTTOM_RIGHT_RADIUS = 113;
7272
public static final int BORDER_LEFT = 11;
7373
public static final int BORDER_RADIUS = 101;
7474
public static final int BORDER_RIGHT = 12;
7575
public static final int BORDER_TOP = 13;
76-
public static final int BORDER_TOP_LEFT_RADIUS = 110;
77-
public static final int BORDER_TOP_RIGHT_RADIUS = 111;
76+
public static final int BORDER_TOP_LEFT_RADIUS = 111;
77+
public static final int BORDER_TOP_RIGHT_RADIUS = 112;
7878
public static final int BOTTOM = 14;
7979
public static final int BOX_SIZING = 105;
8080
public static final int CHARACTER_SPACING = 15;

0 commit comments

Comments
 (0)