1
0
Fork 0

Random bugs

* ABC Mode: fixed candidate letter disappearing, when changing the text case, after the same number key has been pressed twice or more

* Predictive Mode: fixed words not being automatically capitalized if text is entered and deleted repeatedly

* fixed the on-screen keys having incorrect height
This commit is contained in:
Dimo Karaivanov 2022-11-07 17:34:41 +02:00
parent 1e88f81e77
commit 2b25eae760
4 changed files with 8 additions and 12 deletions

View file

@ -13,9 +13,8 @@
android:background="@color/candidate_background" />
<LinearLayout
android:id="@+id/softkey_view"
android:layout_width="match_parent"
android:layout_height="48dp"
android:layout_height="@dimen/soft_key_height"
android:background="@drawable/bggradient"
android:baselineAligned="true"
android:orientation="horizontal">

View file

@ -5,6 +5,6 @@
<dimen name="candidate_padding_horizontal">6sp</dimen>
<dimen name="candidate_padding_vertical">1sp</dimen>
<dimen name="soft_key_height">36dp</dimen>
<dimen name="soft_key_height">44dp</dimen>
<dimen name="soft_key_icon_size">24sp</dimen>
</resources>