Skip to content

Commit 03497fd

Browse files
authored
fix: apply proper top padding in app drawer (#291)
* fix: apply proper top padding in app drawer * docs: update changelog
1 parent ef103f9 commit 03497fd

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88
### Changed
99
- Search now ignores accents and diacritics ([#282])
1010

11+
### Fixed
12+
- Fixed overlap between app drawer and status bar ([#277])
13+
1114
## [1.5.0] - 2025-10-29
1215
### Changed
1316
- Compatibility updates for Android 15 & 16
@@ -91,6 +94,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
9194
[#182]: https://github.com/FossifyOrg/Launcher/issues/182
9295
[#230]: https://github.com/FossifyOrg/Launcher/issues/230
9396
[#234]: https://github.com/FossifyOrg/Launcher/issues/234
97+
[#277]: https://github.com/FossifyOrg/Launcher/issues/277
9498
[#282]: https://github.com/FossifyOrg/Launcher/issues/282
9599

96100
[Unreleased]: https://github.com/FossifyOrg/Launcher/compare/1.5.0...HEAD

app/src/main/kotlin/org/fossify/home/activities/MainActivity.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ class MainActivity : SimpleActivity(), FlingListener {
134134
setContentView(binding.root)
135135
appLaunched(BuildConfig.APPLICATION_ID)
136136
setupEdgeToEdge(
137-
padTopSystem = listOf(binding.widgetsFragment.root),
137+
padTopSystem = listOf(binding.allAppsFragment.root, binding.widgetsFragment.root),
138138
padBottomImeAndSystem = listOf(
139139
binding.allAppsFragment.root, binding.widgetsFragment.root
140140
),

app/src/main/res/layout/all_apps_fragment.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88
<org.fossify.commons.views.MySearchMenu
99
android:id="@+id/search_bar"
1010
android:layout_width="match_parent"
11-
android:layout_height="wrap_content" />
11+
android:layout_height="wrap_content"
12+
app:applyWindowInsets="false" />
1213

1314
<com.qtalk.recyclerviewfastscroller.RecyclerViewFastScroller
1415
android:id="@+id/all_apps_fastscroller"

0 commit comments

Comments
 (0)