Browse Source
We need to stop events getting to parent window. Pointer capture won't work because this now needs an input event in order to take pointer capture, and filtering events on the parent window causes tooltips to continue tooltips to get stuck. Best solution would seem to be using an overlay layer.pull/4099/head
3 changed files with 52 additions and 4 deletions
@ -0,0 +1,10 @@ |
|||
using System.Linq; |
|||
using Avalonia.Rendering; |
|||
using Avalonia.VisualTree; |
|||
|
|||
namespace Avalonia.Controls.Primitives |
|||
{ |
|||
public class LightDismissOverlayLayer : Border |
|||
{ |
|||
} |
|||
} |
|||
Loading…
Reference in new issue