Skip to content

Commit c914655

Browse files
committed
fix(gutter): disable popup hit testing to prevent mouse event interference
1 parent 2a9f2e7 commit c914655

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/CodingWithCalvin.GitRanger/Editor/GutterMargin/BlameMargin.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,9 @@ public BlameMargin(IWpfTextView view, ITextDocumentFactoryService? textDocumentF
5454
{
5555
AllowsTransparency = true,
5656
Placement = PlacementMode.Mouse,
57-
StaysOpen = false,
58-
PopupAnimation = PopupAnimation.Fade
57+
StaysOpen = true,
58+
IsHitTestVisible = false,
59+
PopupAnimation = PopupAnimation.None
5960
};
6061

6162
// Ensure services are initialized (in case package hasn't loaded yet)

0 commit comments

Comments
 (0)