From 4b6bb70f20861ac9e52a300767f0d801425a04d7 Mon Sep 17 00:00:00 2001 From: leo Date: Fri, 15 Nov 2024 16:03:36 +0800 Subject: [PATCH] fix: parent commit's tooltip does not close when move mouse out of bound fast Signed-off-by: leo --- src/Views/CommitBaseInfo.axaml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Views/CommitBaseInfo.axaml.cs b/src/Views/CommitBaseInfo.axaml.cs index 6eb31a60..8f480745 100644 --- a/src/Views/CommitBaseInfo.axaml.cs +++ b/src/Views/CommitBaseInfo.axaml.cs @@ -130,7 +130,7 @@ namespace SourceGit.Views if (c != null) { ToolTip.SetTip(ctl, c); - ToolTip.SetIsOpen(ctl, true); + ToolTip.SetIsOpen(ctl, ctl.IsPointerOver); } } }