[Issue 850] Add a control for unfocused window opacity.

Adds debug setting FloaterUnfocusedBackgroundOpaque
Adds "Make unfocused floaters opaque" to Vanity->Main preferences.

One line patch to llfloater.cpp
This commit is contained in:
Lirusaito
2013-05-30 18:28:36 -04:00
parent a395e2f1b9
commit f3f76c280b
5 changed files with 17 additions and 1 deletions

View File

@@ -1074,7 +1074,8 @@ void LLFloater::setForeground(BOOL front)
releaseFocus();
}
setBackgroundOpaque( front );
if (front || !LLUI::sConfigGroup->getBOOL("FloaterUnfocusedBackgroundOpaque")) // Singu Note: This can be removed when InactiveFloaterTransparency is added
setBackgroundOpaque( front );
}
}