fix(message-view): Respect animation setting when displaying message body#10796
Open
untitaker wants to merge 1 commit intothunderbird:mainfrom
Open
fix(message-view): Respect animation setting when displaying message body#10796untitaker wants to merge 1 commit intothunderbird:mainfrom
untitaker wants to merge 1 commit intothunderbird:mainfrom
Conversation
…body **Description:** Disable fade-in animation when opening messages if the user has disabled animations in Thunderbird's own app settings. The fix was written with AI, but testing, code review and commit messages were done manually. Fixes thunderbird#1903 **Testing:** 1. Go to Settings > General > Display > Use gaudy... and disable it 2. Open any email message 3. Verify the message content appears without fade-in In most cases the message view still loads in steps and feels jumpy, but without any animation.
Contributor
|
Missing report label. Set exactly one of: |
Author
|
|
Contributor
|
Missing report label. Set exactly one of: |
untitaker
added a commit
to untitaker/thunderbird-android
that referenced
this pull request
Apr 7, 2026
Convert the "Use gaudy visual effects" boolean checkbox to a tri-state option (On/Off/Use system default) that defaults to following Android's system animation accessibility setting. Similar to ThemeManager, introduce a new AnimationManager and funnel all access to this option through there. I'm on the fence as to whether that isn't too much overkill, IMO it would make sense to merge them both into one "settings manager". Right now there is only one place where the setting is being read, in ViewSwitcher. However, there are many other places where the setting is supposed to be respected but isn't (sidebar, messagetopview thunderbird#10796) so I figured it's better to centralize the resolution outside of ViewSwitcher.
Contributor
|
Missing report label. Set exactly one of: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description:
Disable fade-in animation when opening messages if the user has disabled animations in Thunderbird's own app settings.
The fix was written with AI, but testing, code review and commit messages were done manually.
Fixes #1903
Testing:
In most cases the message view still loads in steps and feels jumpy, but without any animation.