We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8546725 commit 8ee727fCopy full SHA for 8ee727f
native/Avalonia.Native/src/OSX/WindowImpl.mm
@@ -136,11 +136,7 @@
136
137
for(auto iterator = _children.begin(); iterator != _children.end(); iterator++)
138
{
139
- auto window = (*iterator)->Window;
140
-
141
- // #9565: Only bring window to front if it's on the currently active space
142
- if ([window isOnActiveSpace])
143
- (*iterator)->BringToFront();
+ (*iterator)->BringToFront();
144
}
145
146
@@ -164,9 +160,6 @@
164
160
165
161
void WindowImpl::EndStateTransition() {
166
162
_transitioningWindowState = false;
167
168
- // Ensure correct order of child windows after fullscreen transition.
169
- BringToFront();
170
163
171
172
SystemDecorations WindowImpl::Decorations() {
0 commit comments