mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-12-25 21:07:20 -08:00
fix: parent commit's tooltip does not close when move mouse out of bound fast
Some checks failed
Some checks failed
Signed-off-by: leo <longshuang@msn.cn>
This commit is contained in:
parent
bd85b41da7
commit
4b6bb70f20
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue