Skip to content

Commit 1945a33

Browse files
authored
fix: extended details overlay position in slideshow (#853)
* fix: extended details overlay position in slideshow * docs: update changelog Refs: #800
1 parent ea8c164 commit 1945a33

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88
### Fixed
99
- Fixed invisible color picker button in black themes ([#337])
1010
- Fixed issue with separate video player not respecting paused state when seeking ([#831])
11+
- Fixed misplacement of extended information during slideshow ([#800])
1112

1213
## [1.10.0] - 2025-12-16
1314
### Added
@@ -265,6 +266,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
265266
[#759]: https://github.com/FossifyOrg/Gallery/issues/759
266267
[#786]: https://github.com/FossifyOrg/Gallery/issues/786
267268
[#831]: https://github.com/FossifyOrg/Gallery/issues/831
269+
[#800]: https://github.com/FossifyOrg/Gallery/issues/800
268270

269271
[Unreleased]: https://github.com/FossifyOrg/Gallery/compare/1.10.0...HEAD
270272
[1.10.0]: https://github.com/FossifyOrg/Gallery/compare/1.9.1...1.10.0

app/src/main/kotlin/org/fossify/gallery/fragments/PhotoFragment.kt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -257,6 +257,9 @@ class PhotoFragment : ViewPagerFragment() {
257257
}
258258

259259
mIsFullscreen = listener?.isFullScreen() == true
260+
if (mIsFullscreen) {
261+
binding.bottomActionsDummy.beGone()
262+
}
260263
loadImage()
261264
initExtendedDetails()
262265
mWasInit = true

0 commit comments

Comments
 (0)