Browse Source
win32 - fix client size update when window is opened with extended client area (#13865)
pull/13893/head
Emmanuel Hansen
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
src/Windows/Avalonia.Win32/WindowImpl.cs
|
|
@ -1348,7 +1348,7 @@ namespace Avalonia.Win32 |
|
|
else |
|
|
else |
|
|
SetFullScreen(newProperties.IsFullScreen); |
|
|
SetFullScreen(newProperties.IsFullScreen); |
|
|
|
|
|
|
|
|
if (!_isFullScreenActive) |
|
|
if (!_isFullScreenActive && ((oldProperties.Decorations != newProperties.Decorations) || forceChanges)) |
|
|
{ |
|
|
{ |
|
|
var style = GetStyle(); |
|
|
var style = GetStyle(); |
|
|
|
|
|
|
|
|
|