Index: Source/NSApplication.m =================================================================== --- Source/NSApplication.m (revisión: 36757) +++ Source/NSApplication.m (copia de trabajo) @@ -2091,6 +2091,7 @@ default: /* pass all other events to the event's window */ { + short subtype = [theEvent subtype]; NSWindow *window = [theEvent window]; if (!theEvent) @@ -2101,7 +2102,9 @@ else NSDebugLLog(@"NSEvent", @"Send NSEvent type: %d to %@", (int)type, window); - if (window) + if (window && + (subtype != GSAppKitWindowMoved) && + (subtype != GSAppKitWindowResized)) [window sendEvent: theEvent]; else if (type == NSRightMouseDown) [self rightMouseDown: theEvent];