Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
),
Expand Down
3 changes: 2 additions & 1 deletion app/src/main/res/layout/all_apps_fragment.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
Loading