Skip to content

Commit c26f64c

Browse files
committed
Update: Expression 의 bounding-box 를 optional 로 설정
operand 가 없는 등호(=) 와 같은 식을 쓰면 가상의 operand(Expression) 이 자동 생성되는데 이 때 이 operand 의 bounding-box 가 null 이다
1 parent e025d43 commit c26f64c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • myscript-iink/src/main/java/com/knowre/android/myscript/iink/jiix

myscript-iink/src/main/java/com/knowre/android/myscript/iink/jiix/Expression.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ data class Expression(
1212
@SerializedName("close symbol")
1313
val closeSymbol: String?,
1414
@SerializedName("bounding-box")
15-
val boundingBox: BoundingBox,
15+
val boundingBox: BoundingBox?,
1616
val symbols: List<Symbol>?,
1717
val operands: List<Expression>?
1818
)

0 commit comments

Comments
 (0)