-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Never update ToolTipService while the mouse is over a tooltip (fixes …
…flicker when redrawing a window beneath the pointer) (#15596) Avoid race condition where a dispatcher timer callback exectues right after we stopped the timer Fix not closing a tooltip when its pointer exit event is the last input sent to Avalonia
- Loading branch information
1 parent
fd78546
commit 76f4e7a
Showing
3 changed files
with
29 additions
and
12 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
using Avalonia.Metadata; | ||
using Avalonia.Input; | ||
using Avalonia.Metadata; | ||
|
||
namespace Avalonia.Controls; | ||
|
||
[Unstable, PrivateApi] | ||
internal interface IToolTipService | ||
{ | ||
void Update(Visual? candidateToolTipHost); | ||
void Update(IInputRoot root, Visual? candidateToolTipHost); | ||
} |
This file contains 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
This file contains 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