Browse Source

Merge pull request #6555 from AvaloniaUI/fixes/win32-remember-window-state-hide-show

win32 - dont loose window state when hide and show are called program…
pull/6559/head
Dan Walmsley 4 years ago
committed by GitHub
parent
commit
3c559010e0
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      src/Windows/Avalonia.Win32/WindowImpl.cs

6
src/Windows/Avalonia.Win32/WindowImpl.cs

@ -263,10 +263,8 @@ namespace Avalonia.Win32
{
ShowWindow(value, true);
}
else
{
_showWindowState = value;
}
_showWindowState = value;
}
}

Loading…
Cancel
Save