On Sun, Mar 27, 2011 at 6:49 PM, Hui Shen <[email protected]> wrote: > // (1) > // / \ > // (2) (3) > // | > // (4) > [mainWindow1 addChildWindow:mainWindow2 ordered:NSWindowAbove]; > > [mainWindow3 addChildWindow:mainWindow4 ordered:NSWindowAbove]; > [mainWindow1 addChildWindow:mainWindow3 ordered:NSWindowAbove]; // The > failure console information reported at here
Well, it looks like this just isn't supported. Strange that if you remove mainWindow2 from the equation that it works, but really there's no reason to have more than one level of child windows. They're all going to move together with the main window anyway. I'd suggest filling a bug about this at http://bugreport.apple.com and changing your code to make all of your child windows direct children of the main window. --Kyle Sluder _______________________________________________ Cocoa-dev mailing list ([email protected]) Please do not post admin requests or moderator comments to the list. Contact the moderators at cocoa-dev-admins(at)lists.apple.com Help/Unsubscribe/Update your Subscription: http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com This email sent to [email protected]
