Browse Source
Merge branch 'master' into bug/wasm-keyboard-event-failing-android
pull/8251/head
Max Katz
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
5 additions and
0 deletions
-
native/Avalonia.Native/src/OSX/WindowImpl.mm
|
|
|
@ -564,6 +564,11 @@ bool WindowImpl::IsDialog() { |
|
|
|
|
|
|
|
NSWindowStyleMask WindowImpl::GetStyle() { |
|
|
|
unsigned long s = NSWindowStyleMaskBorderless; |
|
|
|
|
|
|
|
if(_actualWindowState == FullScreen) |
|
|
|
{ |
|
|
|
s |= NSWindowStyleMaskFullScreen; |
|
|
|
} |
|
|
|
|
|
|
|
switch (_decorations) { |
|
|
|
case SystemDecorationsNone: |
|
|
|
|