Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/UniGetUI.Avalonia/Views/MainWindow.axaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1091,6 +1091,11 @@ private static nint OnWindowsWndProc(nint hWnd, uint msg, nint wParam, nint lPar
borderOwner.ApplyWindowBorderColor(hWnd);
}

if (msg == WM_SETTINGCHANGE && Instance is { } trayOwner)
{
trayOwner.UpdateSystemTrayStatus();
}

// ── Snap Layouts: report HTMAXBUTTON over the custom maximize button so Win11 shows the
// layout flyout, and emulate hover/press/click since input now arrives as NC messages. ──
if (Instance is { } self && self.WindowButtons.IsVisible)
Expand Down
Loading