|
38 | 38 | lastMenu = nullptr;
|
39 | 39 |
|
40 | 40 | 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]; |
42 | 51 | }
|
43 | 52 |
|
44 | 53 | HRESULT WindowBaseImpl::ObtainNSViewHandle(void **ret) {
|
|
89 | 98 | START_COM_CALL;
|
90 | 99 |
|
91 | 100 | @autoreleasepool {
|
| 101 | + [Window setContentSize:lastSize]; |
| 102 | + |
92 | 103 | if(hasPosition)
|
93 | 104 | {
|
94 | 105 | SetPosition(lastPositionSet);
|
|
291 | 302 | if (!_shown) {
|
292 | 303 | BaseEvents->Resized(AvnSize{x, y}, reason);
|
293 | 304 | }
|
294 |
| - |
295 |
| - if(Window != nullptr) { |
| 305 | + else if(Window != nullptr) { |
296 | 306 | [Window setContentSize:lastSize];
|
297 | 307 | [Window invalidateShadow];
|
298 | 308 | }
|
|
568 | 578 | }
|
569 | 579 | }
|
570 | 580 |
|
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 |
| - |
596 | 581 | id <AvnWindowProtocol> WindowBaseImpl::GetWindowProtocol() {
|
597 | 582 | if(Window == nullptr)
|
598 | 583 | {
|
|
0 commit comments