diff --git a/CHANGELOG.md b/CHANGELOG.md
index 31e37aa7..9f0ebcce 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -8,6 +8,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed
- Search now ignores accents and diacritics ([#282])
+### Fixed
+- Fixed overlap between app drawer and status bar ([#277])
+
## [1.5.0] - 2025-10-29
### Changed
- Compatibility updates for Android 15 & 16
@@ -91,6 +94,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
[#182]: https://github.com/FossifyOrg/Launcher/issues/182
[#230]: https://github.com/FossifyOrg/Launcher/issues/230
[#234]: https://github.com/FossifyOrg/Launcher/issues/234
+[#277]: https://github.com/FossifyOrg/Launcher/issues/277
[#282]: https://github.com/FossifyOrg/Launcher/issues/282
[Unreleased]: https://github.com/FossifyOrg/Launcher/compare/1.5.0...HEAD
diff --git a/app/src/main/kotlin/org/fossify/home/activities/MainActivity.kt b/app/src/main/kotlin/org/fossify/home/activities/MainActivity.kt
index 5e8ea170..5946e01f 100644
--- a/app/src/main/kotlin/org/fossify/home/activities/MainActivity.kt
+++ b/app/src/main/kotlin/org/fossify/home/activities/MainActivity.kt
@@ -134,7 +134,7 @@ class MainActivity : SimpleActivity(), FlingListener {
setContentView(binding.root)
appLaunched(BuildConfig.APPLICATION_ID)
setupEdgeToEdge(
- padTopSystem = listOf(binding.widgetsFragment.root),
+ padTopSystem = listOf(binding.allAppsFragment.root, binding.widgetsFragment.root),
padBottomImeAndSystem = listOf(
binding.allAppsFragment.root, binding.widgetsFragment.root
),
diff --git a/app/src/main/res/layout/all_apps_fragment.xml b/app/src/main/res/layout/all_apps_fragment.xml
index 0f758115..111e81ff 100644
--- a/app/src/main/res/layout/all_apps_fragment.xml
+++ b/app/src/main/res/layout/all_apps_fragment.xml
@@ -8,7 +8,8 @@
+ android:layout_height="wrap_content"
+ app:applyWindowInsets="false" />