We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9846788 commit 1526ecbCopy full SHA for 1526ecb
java/src/org/futo/inputmethod/latin/LatinIME.kt
@@ -96,7 +96,10 @@ import org.futo.inputmethod.v2keyboard.isFoldableInnerDisplayAllowed
96
import kotlin.math.roundToInt
97
98
/** Whether or not we can render into the navbar */
99
-val SupportsNavbarExtension = Build.VERSION.SDK_INT >= 28
+val SupportsNavbarExtension =
100
+ Build.VERSION.SDK_INT >= 28 &&
101
+ // https://github.com/futo-org/android-keyboard/issues/772
102
+ !Build.MANUFACTURER.lowercase().contains("motorola")
103
104
private class UnlockedBroadcastReceiver(val onDeviceUnlocked: () -> Unit) : BroadcastReceiver() {
105
override fun onReceive(context: Context?, intent: Intent?) {
0 commit comments