Browse Source

Disable clipping in DevTools content/padding/margin adorner so that the margin part is visible (fixes #8025)

pull/8026/head
Kevin Ivarsen 4 years ago
parent
commit
30531df327
  1. 1
      src/Avalonia.Diagnostics/Diagnostics/Views/TreePageView.xaml.cs

1
src/Avalonia.Diagnostics/Diagnostics/Views/TreePageView.xaml.cs

@ -36,6 +36,7 @@ namespace Avalonia.Diagnostics.Views
new Border { BorderBrush = new SolidColorBrush(Colors.Yellow, 0.5) }
},
};
AdornerLayer.SetIsClipEnabled(_adorner, false);
}
protected void AddAdorner(object? sender, PointerEventArgs e)

Loading…
Cancel
Save