Skip to content

Commit d666e4f

Browse files
authored
Merge pull request #8269 from AvaloniaUI/fixes/osx-setcontent-size-shadow-invalidation
Fixes/osx setcontent size shadow invalidation
2 parents ab0c135 + 09c9a98 commit d666e4f

File tree

3 files changed

+13
-34
lines changed

3 files changed

+13
-34
lines changed

native/Avalonia.Native/src/OSX/WindowBaseImpl.h

-1
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,6 @@ BEGIN_INTERFACE_MAP()
110110
private:
111111
void CreateNSWindow (bool isDialog);
112112
void CleanNSWindow ();
113-
void InitialiseNSWindow ();
114113

115114
NSCursor *cursor;
116115
ComPtr<IAvnGlContext> _glContext;

native/Avalonia.Native/src/OSX/WindowBaseImpl.mm

+13-28
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,16 @@
3838
lastMenu = nullptr;
3939

4040
CreateNSWindow(usePanel);
41-
InitialiseNSWindow();
41+
42+
[Window setContentView:StandardContainer];
43+
[Window setStyleMask:NSWindowStyleMaskBorderless];
44+
[Window setBackingType:NSBackingStoreBuffered];
45+
46+
[Window setContentMinSize:lastMinSize];
47+
[Window setContentMaxSize:lastMaxSize];
48+
49+
[Window setOpaque:false];
50+
[Window setHasShadow:true];
4251
}
4352

4453
HRESULT WindowBaseImpl::ObtainNSViewHandle(void **ret) {
@@ -89,6 +98,8 @@
8998
START_COM_CALL;
9099

91100
@autoreleasepool {
101+
[Window setContentSize:lastSize];
102+
92103
if(hasPosition)
93104
{
94105
SetPosition(lastPositionSet);
@@ -291,8 +302,7 @@
291302
if (!_shown) {
292303
BaseEvents->Resized(AvnSize{x, y}, reason);
293304
}
294-
295-
if(Window != nullptr) {
305+
else if(Window != nullptr) {
296306
[Window setContentSize:lastSize];
297307
[Window invalidateShadow];
298308
}
@@ -568,31 +578,6 @@
568578
}
569579
}
570580

571-
void WindowBaseImpl::InitialiseNSWindow() {
572-
if(Window != nullptr) {
573-
[Window setContentView:StandardContainer];
574-
[Window setStyleMask:NSWindowStyleMaskBorderless];
575-
[Window setBackingType:NSBackingStoreBuffered];
576-
577-
[Window setContentSize:lastSize];
578-
[Window setContentMinSize:lastMinSize];
579-
[Window setContentMaxSize:lastMaxSize];
580-
581-
[Window setOpaque:false];
582-
583-
[Window setHasShadow:true];
584-
[Window invalidateShadow];
585-
586-
if (lastMenu != nullptr) {
587-
[GetWindowProtocol() applyMenu:lastMenu];
588-
589-
if ([Window isKeyWindow]) {
590-
[GetWindowProtocol() showWindowMenuWithAppMenu];
591-
}
592-
}
593-
}
594-
}
595-
596581
id <AvnWindowProtocol> WindowBaseImpl::GetWindowProtocol() {
597582
if(Window == nullptr)
598583
{

native/Avalonia.Native/src/OSX/WindowImpl.mm

-5
Original file line numberDiff line numberDiff line change
@@ -54,11 +54,6 @@
5454
[GetWindowProtocol() setIsExtended:true];
5555
SetExtendClientArea(true);
5656
}
57-
58-
if(_parent != nullptr)
59-
{
60-
SetParent(_parent);
61-
}
6257
}
6358

6459
HRESULT WindowImpl::Show(bool activate, bool isDialog) {

0 commit comments

Comments
 (0)