Skip to content

Commit 3a1a256

Browse files
committed
⬆️ Avalonia 11.2.3
1 parent 84f9ae5 commit 3a1a256

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

ref/DirectoryPackages

src/Avalonia.Controls.Internals/Extensions/WindowExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ namespace Avalonia.Controls;
44
public static class AvaloniaControlsInternalsWindowExtensions
55
{
66
[MethodImpl(MethodImplOptions.AggressiveInlining)]
7-
public static void CloseCore_(this Window window, WindowCloseReason reason, bool isProgrammatic) => window.CloseCore(reason, isProgrammatic);
7+
public static void CloseCore_(this Window window, WindowCloseReason reason, bool isProgrammatic, bool ignoreCancel) => window.CloseCore(reason, isProgrammatic, ignoreCancel);
88

99
[MethodImpl(MethodImplOptions.AggressiveInlining)]
1010
public static void HandleResized_(this Window window, Size clientSize, WindowResizeReason reason) => window.HandleResized(clientSize, reason);

src/Avalonia.Skia.Internals/ClassicDesktopStyleApplicationLifetime.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ bool DoShutdown(
174174
{
175175
if (w.Owner is null)
176176
{
177-
w.CloseCore_(WindowCloseReason.ApplicationShutdown, isProgrammatic);
177+
w.CloseCore_(WindowCloseReason.ApplicationShutdown, isProgrammatic, false);
178178
}
179179
}
180180

0 commit comments

Comments
 (0)