Re: UIElementInspector
Re: UIElementInspector
- Subject: Re: UIElementInspector
- From: Mike Engber <email@hidden>
- Date: Wed, 30 Jul 2003 08:51:16 -0700
I think your problem is that IB was changed (since UIElementInspector
was originally released) to force utility windows to be hide on
deactivate - a very unfortunate situation for an app like
UIElementInspector which is always inactive. To make matters worse - it
applies this change (silently) to nib files when you open them.
To work around this, you need to explicitly call setHidesOnDeactivate.
In AppShell.m, I added these two lines to awakeFromNib:
[_inspectorWindow setHidesOnDeactivate:NO];
[_interactionWindow setHidesOnDeactivate:NO];
IB is aware of this bug and once you get a version with the fix you'll
be able to remove this code and set it up correctly in the nib.
-ME
_______________________________________________
accessibility-dev mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/accessibility-dev
Do not post admin requests to the list. They will be ignored.