Browse Source

Merge pull request #7251 from AvaloniaUI/fixes/7245-x11-crash-fix

Stopgap measure to fix #7245
pull/7258/head
Jumar Macato 4 years ago
committed by GitHub
parent
commit
0f030a17f0
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/Avalonia.X11/X11Window.cs

2
src/Avalonia.X11/X11Window.cs

@ -1157,7 +1157,7 @@ namespace Avalonia.X11
public ITextInputMethodImpl TextInputMethod => _ime;
public void SetTransparencyLevelHint(WindowTransparencyLevel transparencyLevel) =>
_transparencyHelper.SetTransparencyRequest(transparencyLevel);
_transparencyHelper?.SetTransparencyRequest(transparencyLevel);
public void SetWindowManagerAddShadowHint(bool enabled)
{

Loading…
Cancel
Save