Skip to content

Commit 2364f66

Browse files
committed
Merge pull request #5943 from AvaloniaUI/fixes/missing-osx-shadow-border
trick to make OSX invalidate the shadow.
1 parent 55758e3 commit 2364f66

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

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

+1
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ class WindowBaseImpl;
3434
-(double) getScaling;
3535
-(double) getExtendedTitleBarHeight;
3636
-(void) setIsExtended:(bool)value;
37+
-(void) updateShadow;
3738
@end
3839

3940
struct INSWindowHolder

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

+18-1
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,11 @@ virtual HRESULT Show(bool activate) override
124124
[Window setTitle:_lastTitle];
125125

126126
_shown = true;
127-
127+
128+
dispatch_async(dispatch_get_main_queue(), ^{
129+
[Window updateShadow];
130+
});
131+
128132
return S_OK;
129133
}
130134
}
@@ -1838,6 +1842,19 @@ @implementation AvnWindow
18381842
double _lastScaling;
18391843
}
18401844

1845+
- (void)updateShadow
1846+
{
1847+
// Common problem in Cocoa where [invalidateShadow] does work,
1848+
// This hack forces Cocoa to invalidate the shadow.
1849+
1850+
NSRect frame = [self frame];
1851+
NSRect updatedFrame = NSMakeRect(frame.origin.x, frame.origin.y, frame.size.width + 1.0, frame.size.height + 1.0);
1852+
[self setFrame:updatedFrame display:YES];
1853+
[self setFrame:frame display:YES];
1854+
1855+
[self invalidateShadow];
1856+
}
1857+
18411858
-(void) setIsExtended:(bool)value;
18421859
{
18431860
_isExtended = value;

0 commit comments

Comments
 (0)