Update android/KMEA/app/src/main/java/com/keyman/engine/KMManager.java

Co-authored-by: Marc Durdin <marc@durdin.net>
This commit is contained in:
Matthew Lee 2025-03-26 01:54:21 -04:00 • committed by GitHub
parent d4e7d06034
commit 459c948a97
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -2225,7 +2225,7 @@ public final class KMManager {
if (orientation == Configuration.ORIENTATION_PORTRAIT) {
return prefs.getInt(KMManager.KMKey_KeyboardHeightPortrait, defaultHeight);
} else if (orientation == Configuration.ORIENTATION_LANDSCAPE) {
return prefs.getInt(KMManager.KMKey_KeyboardHeightLandscape, defaultHeight);
return prefs.getInt(KMManager.KMKey_KeyboardHeightLandscape, defaultHeight);
}
return defaultHeight;
}