-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Minimize Button is not working in MacOS Sequoia Version 15.0 #17083
Comments
This also happens when using the Nightly Builds. |
Yes we are seeing this also with macOS 15 and our users on macOS12 it's even worse. Their whole UI freezes. Super bad one. 8( |
Fixed by #17181. |
Waiting for public release in NuGet |
Fixed in 11.1.4. |
Sweetness! Thx man! |
We have upgraded our application to version 11.1.4. Minimized issue is resolved. Currently, we use the following method to capture key events and close the view when the Escape key is pressed: private void Window_KeyDown(object? sender, KeyEventArgs e)
{
if (e.Key == Key.Escape)
{
Close();
}
} Previously, this functionality worked as expected. In version 11.1.4, it continues to work on Windows; however, it now crashes on macOS. The error report indicates that our application encounters a segmentation fault ( |
Describe the bug
We are using Avalonia, Avalonia.Desktop, and Avalonia.ReactiveUI. All are version 11.1.3.
In MacOS Sonoma Version 14.6.1, minimize button is working BUT in MacOS Sequoia Version 15.0, minimize button is not working
To Reproduce
Run AvaloniaUI in MacOS Sequoia Version 15.0.
Expected behavior
Should minimize the UI
Avalonia version
11.1.3
OS
macOS
Additional context
No response
The text was updated successfully, but these errors were encountered: