fix: parent commit's tooltip does not close when move mouse out of bound fast
Some checks failed
Continuous Integration / Build (push) Waiting to run
Continuous Integration / Prepare version string (push) Waiting to run
Continuous Integration / Package (push) Blocked by required conditions
Localization Check / localization-check (push) Has been cancelled

Signed-off-by: leo <longshuang@msn.cn>
This commit is contained in:
leo 2024-11-15 16:03:36 +08:00
parent bd85b41da7
commit 4b6bb70f20
No known key found for this signature in database

View file

@ -130,7 +130,7 @@ namespace SourceGit.Views
if (c != null) if (c != null)
{ {
ToolTip.SetTip(ctl, c); ToolTip.SetTip(ctl, c);
ToolTip.SetIsOpen(ctl, true); ToolTip.SetIsOpen(ctl, ctl.IsPointerOver);
} }
} }
} }