We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 56d8a74 commit 1b46ba4Copy full SHA for 1b46ba4
1 file changed
app/src/main/java/helium314/keyboard/keyboard/internal/keyboard_parser/LayoutParser.kt
@@ -74,7 +74,7 @@ object LayoutParser {
74
private fun createCacheLambda(layoutType: LayoutType, layoutName: String, context: Context):
75
(KeyboardParams) -> MutableList<MutableList<KeyData>> {
76
val layoutFileContent = getLayoutFileContent(layoutType, layoutName.substringBefore("+"), context).trimStart()
77
- if (layoutFileContent.startsWith("[") || (LayoutUtilsCustom.isCustomLayout(layoutName) && layoutFileContent.startsWith("/"))) {
+ if (layoutFileContent.startsWith("[") || (LayoutUtilsCustom.isCustomLayout(layoutName) && layoutFileContent.startsWith("//"))) {
78
try {
79
val florisKeyData = parseJsonString(layoutFileContent, false)
80
return { params ->
0 commit comments