Page 1 of 1

alpha root wnd

Posted: Sun Jun 06, 2004 17:02
by CrazyEddie
For any child window you want to be unaffected by changes to alpha on the parent, you should do a:

Code: Select all

child->setInheritsAlpha(false);


This will leave the window 'child' and any windows attached to 'child' unaffected by alpha changes to the parent of 'child'.

Hope this helps :)