Browse Source

Merge pull request #7049 from workgroupengineering/fixes/Issue_7048

fixes: Window Control missing call base.OnPropertyChanged on override.
pull/7053/head
Max Katz 4 years ago
committed by GitHub
parent
commit
ae2181ac47
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      src/Avalonia.Controls/Window.cs

1
src/Avalonia.Controls/Window.cs

@ -994,6 +994,7 @@ namespace Avalonia.Controls
protected override void OnPropertyChanged<T>(AvaloniaPropertyChangedEventArgs<T> change)
{
base.OnPropertyChanged(change);
if (change.Property == SystemDecorationsProperty)
{
var typedNewValue = change.NewValue.GetValueOrDefault<SystemDecorations>();

Loading…
Cancel
Save