Conversation
Reviewer's GuideIntroduces a persisted “Hide toolbar” tray setting, wires it into viewer initialization, and implements animated toolbar auto-hiding based on cursor position using timer-driven screen-coordinate checks, while also hardening version generation for invalid Git tags. Sequence diagram for the optional auto-hiding toolbarsequenceDiagram
participant User
participant TrayIconManager
participant SettingHelper
participant ViewerWindow
participant DispatcherTimer
participant ToolbarStoryboard
User->>TrayIconManager: Execute _itemHideToolbar Command
TrayIconManager->>SettingHelper: Get HideToolbar
TrayIconManager->>SettingHelper: Set HideToolbar
User->>ViewerWindow: BeginShow
ViewerWindow->>SettingHelper: Get HideToolbar
ViewerWindow->>ViewerWindow: Set HideToolbar
DispatcherTimer->>ViewerWindow: UpdateToolbarVisibility
alt Pointer in toolbar reveal zone
ViewerWindow->>ToolbarStoryboard: Begin ShowCaptionContainerStoryboard
else Pointer outside keep-visible zone
ViewerWindow->>ToolbarStoryboard: Begin HideCaptionContainerStoryboard
end
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
Fix ImageViewer metadata tooltips
sourcery-ai
Bot
dismissed
their stale review
September 19, 2026 06:22
Sourcery withdrew this approval because the latest commits introduced blocking findings.
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.
PR Checklist
Brief Description of Changes
I added a new item to the tray icon menu: "Hide toolbar." When enabled, it hides the toolbar, and it appears when you hover over it.
Related Issue (if any)
Please provide related issue numbers:
Additional Notes
Add any extra notes here:
Summary by Sourcery
Add optional auto-hiding behavior for the viewer toolbar with localized UI support.
New Features:
Enhancements:
Build: