Browse Source

Post merge fixup.

pull/7372/head
Dariusz Komosiński 4 years ago
parent
commit
9296ada343
  1. 7
      src/Avalonia.Controls/TopLevel.cs

7
src/Avalonia.Controls/TopLevel.cs

@ -91,7 +91,7 @@ namespace Avalonia.Controls
private WindowTransparencyLevel _actualTransparencyLevel;
private ILayoutManager? _layoutManager;
private Border? _transparencyFallbackBorder;
private WeakEventSubscriber<ResourcesChangedEventArgs> _resourcesChangesSubscriber;
private WeakEventSubscriber<ResourcesChangedEventArgs>? _resourcesChangesSubscriber;
/// <summary>
/// Initializes static members of the <see cref="TopLevel"/> class.
@ -300,11 +300,6 @@ namespace Avalonia.Controls
/// <inheritdoc/>
IMouseDevice? IInputRoot.MouseDevice => PlatformImpl?.MouseDevice;
void IWeakEventSubscriber<ResourcesChangedEventArgs>.OnEvent(object? sender, WeakEvent ev, ResourcesChangedEventArgs e)
{
((ILogical)this).NotifyResourcesChanged(e);
}
/// <summary>
/// Gets or sets a value indicating whether access keys are shown in the window.
/// </summary>

Loading…
Cancel
Save