Skip to content

Commit 49e147b

Browse files
authored
Merge pull request #1 from deton/fixconv
交ぜ書き変換の確定や候補選択ができないバグ修正
2 parents 383e305 + 8a6fe98 commit 49e147b

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

app/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ android {
99
applicationId "io.github.deton.androidtutcode"
1010
minSdkVersion 14
1111
targetSdkVersion 28
12-
versionCode 1
13-
versionName "1.0"
12+
versionCode 2
13+
versionName "1.0.1"
1414
}
1515

1616
buildTypes {

app/src/main/java/jp/deadend/noname/skk/engine/SKKKanjiState.kt

+1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ object SKKKanjiState : SKKState {
2525
if (pcode == ' '.toInt()) { // 変換開始
2626
composing.setLength(0)
2727
context.conversionStart(kanjiKey)
28+
return
2829
} else {
2930
context.setComposingTextSKK(kanjiKey.toString() + composing.toString(), 1)
3031
}

0 commit comments

Comments
 (0)