expanding diacritics types to correctly implement thai diacritics

This commit is contained in:
minjaesong
2021-12-21 12:01:48 +09:00
parent c2ed83d511
commit dc6bd89497
13 changed files with 67 additions and 72 deletions

View File

@@ -46,8 +46,8 @@ data class GlyphProps(
const val STACK_BEFORE_N_AFTER = 2
const val STACK_UP_N_DOWN = 3
const val DIA_OVERLAY = 1
const val DIA_JOINER = 2
const val DIA_OVERLAY = 2
// const val DIA_JOINER = 2
private fun Boolean.toInt() = if (this) 1 else 0
}