[Bug] Small style bug #1330
Labels
No labels
accepted
bug
declined
docs
duplicate
enhancement
good first issue
in-progress
needs-info
privacy
security
triage
No milestone
No project
No assignees
2 participants
Notifications
Due date
No due date set.
Dependencies
No dependencies set
Reference
LibreKAT/Ocideck#1330
Loading…
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Describe the bug
When enabling slide numbers their location is not as expected.
To reproduce
Steps to reproduce the behaviour:
Expected behaviour
That page numbers are located as promised, bottom right.
Screenshots / sample deck

Environment
flutter --version):Additional context
Anything else that might help.
Opgepakt. Tak: fix/page-numbers-bottom-right-1330. Verwachte reikwijdte: lib/widgets/slides/previews/overlays.dart (paginanummer altijd rechtsonder i.p.v. meeliftend met de footerpositie) en de overlap tussen een gecentreerde footer en de spelerbalk (lib/widgets/presentation/audience_controls_bar.dart). Regressietest in test/.
Fixed on
main(commit13f13610, PR #1333).The page number was being drawn in the same row as the footer text, so it followed the footer position — with the footer centered it ended up in the middle instead of the corner. It now sits in the bottom-right independently of the footer position, matching the setting's "(bottom right)" label, and dodges left of a logo or TLP badge when one occupies that corner. Verified in the editor preview, fullscreen presentation and the PDF export, in light and dark, with regression tests.
On the second point (player controls overlapping the centered footer): the on-screen control bar is a semi-transparent bar that appears on mouse movement and fades after a few seconds, and it sits mostly in the letterbox below the slide. Moving the page number out of the center actually removes the worst of that overlap, so the control bar itself was left as is.
Thanks for the clear report and the screenshot — it made this easy to pin down.