Browse Source

Merge pull request #7049 from workgroupengineering/fixes/Issue_7048

fixes: Window Control missing call base.OnPropertyChanged on override.
release/0.10.11-rc.2
Max Katz 4 years ago
committed by Dan Walmsley
parent
commit
a27e43d194
  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