diff --git a/app/lib/selections/file.dart b/app/lib/selections/file.dart index 5841452e65b6..b7bf01feb84a 100644 --- a/app/lib/selections/file.dart +++ b/app/lib/selections/file.dart @@ -148,7 +148,7 @@ class _UtilitiesViewState extends State<_UtilitiesView> kThumbnailHeight.toDouble(); final height = width * kThumbnailHeight / kThumbnailWidth; - final heightOffset = (height - realHeight) / 2; + final heightOffset = (realHeight - height) / 2; final quality = kThumbnailWidth / width; final thumbnail = await state.currentIndexCubit.render( state.data, diff --git a/metadata/en-US/changelogs/127.txt b/metadata/en-US/changelogs/127.txt index 7d82b207e46b..e8c22b9ca168 100644 --- a/metadata/en-US/changelogs/127.txt +++ b/metadata/en-US/changelogs/127.txt @@ -9,5 +9,6 @@ * Add password protected notes ([#771](https://github.com/LinwoodDev/Butterfly/issues/771)) * Fix undo/redo tools not showing status correctly * Fix grid not working correctly +* Fix capture thumbnail uses wrong position Read more here: https://linwood.dev/butterfly/2.3.0-beta.0 \ No newline at end of file