Thanks to visit codestin.com Credit goes to github.com
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.
2 parents 5ba5233 + fac00b2 commit b7633bcCopy full SHA for b7633bc
1 file changed
src/_macosx.m
@@ -5769,7 +5769,10 @@ - (int)index
5769
if(nwin > 0)
5770
{
5771
[NSApp activateIgnoringOtherApps: YES];
5772
- for (NSWindow *window in [NSApp windows]) {
+ NSArray *windowsArray = [NSApp windows];
5773
+ NSEnumerator *enumerator = [windowsArray objectEnumerator];
5774
+ NSWindow *window;
5775
+ while ((window = [enumerator nextObject])) {
5776
[window orderFront:nil];
5777
}
5778
[NSApp run];
0 commit comments