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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
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) |
|
|
|
{ |
|
|
|
|