mirror of
https://github.com/FossifyOrg/Launcher.git
synced 2025-12-23 23:58:13 -05:00
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:
@@ -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
|
||||
|
||||
@@ -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
|
||||
),
|
||||
|
||||
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user