We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I want to bring an existing, opened Window to the front and focus it.
Window.Activate(); works on Windows as expected, but does nothing on macOS.
Window.Activate();
The text was updated successfully, but these errors were encountered:
Any update on this one?
Sorry, something went wrong.
Upgraded from 0.10.10 to 0.10.18 this morning, and the created window stays behind the main window on macos
I found that simply calling Activate() within the window does nothing but calling Dispatcher.UIThread.Post(Activate) works as intended.
Activate()
Dispatcher.UIThread.Post(Activate)
Resolved (hopefully) .Activate() call in ActivateWindow() in Launcher…
85cf60d
…Commands.cs -> AvaloniaUI/Avalonia#2398
danwalmsley
Successfully merging a pull request may close this issue.
I want to bring an existing, opened Window to the front and focus it.
Window.Activate();
works on Windows as expected, but does nothing on macOS.The text was updated successfully, but these errors were encountered: