diff --git a/CHANGELOG.md b/CHANGELOG.md index 0b25c90c..6f5b14c2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +### Fixed +- Fixed transparent bar at bottom in full-screen ([#312]) ## [1.6.0] - 2025-10-29 ### Added diff --git a/app/src/main/kotlin/org/fossify/keyboard/services/SimpleKeyboardIME.kt b/app/src/main/kotlin/org/fossify/keyboard/services/SimpleKeyboardIME.kt index 8ce056fa..206e76f8 100644 --- a/app/src/main/kotlin/org/fossify/keyboard/services/SimpleKeyboardIME.kt +++ b/app/src/main/kotlin/org/fossify/keyboard/services/SimpleKeyboardIME.kt @@ -560,7 +560,7 @@ class SimpleKeyboardIME : InputMethodService(), OnKeyboardActionListener, Shared window.window?.apply { WindowCompat.enableEdgeToEdge(this) ViewCompat.setOnApplyWindowInsetsListener(binding.keyboardHolder) { view, insets -> - val system = insets.getInsetsIgnoringVisibility(Type.systemBars()) + val system = insets.getInsets(Type.systemBars()) binding.keyboardHolder.updatePadding(bottom = system.bottom) insets }