From c0ed5db0624e5a886dc106e7c62004127862ec97 Mon Sep 17 00:00:00 2001 From: Naveen Singh Date: Mon, 3 Nov 2025 12:27:45 +0530 Subject: [PATCH 1/2] fix: don't ignore insets visibility Refs: https://github.com/FossifyOrg/Keyboard/issues/312 --- .../kotlin/org/fossify/keyboard/services/SimpleKeyboardIME.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 } From 1097ab9746d236c6bb03ec30216989147303e8db Mon Sep 17 00:00:00 2001 From: Naveen Singh Date: Mon, 3 Nov 2025 12:28:58 +0530 Subject: [PATCH 2/2] docs: update changelog --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) 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