Julien Lebosquain
4 days ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
4 additions and
0 deletions
-
native/Avalonia.Native/src/OSX/WindowImpl.mm
|
|
|
@ -563,6 +563,10 @@ NSWindowStyleMask WindowImpl::CalculateStyleMask() { |
|
|
|
|
|
|
|
case SystemDecorationsBorderOnly: |
|
|
|
s = s | NSWindowStyleMaskTitled | NSWindowStyleMaskFullSizeContentView; |
|
|
|
|
|
|
|
if (_canResize && _isEnabled) { |
|
|
|
s = s | NSWindowStyleMaskResizable; |
|
|
|
} |
|
|
|
break; |
|
|
|
|
|
|
|
case SystemDecorationsFull: |
|
|
|
|