fix: apply proper top padding in app drawer (#291)

* fix: apply proper top padding in app drawer

* docs: update changelog
This commit is contained in:
Naveen Singh
2025-12-01 00:25:11 +05:30
committed by GitHub
parent ef103f94c4
commit 03497fdbb2
3 changed files with 7 additions and 2 deletions

View File

@@ -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

View File

@@ -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
),

View File

@@ -8,7 +8,8 @@
<org.fossify.commons.views.MySearchMenu
android:id="@+id/search_bar"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
android:layout_height="wrap_content"
app:applyWindowInsets="false" />
<com.qtalk.recyclerviewfastscroller.RecyclerViewFastScroller
android:id="@+id/all_apps_fastscroller"